<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
[v-cloak]{
display: none;
}
</style>
</head>
<body>
<div id="app" v-cloak>
<h2>{{message}}</h2>
<h2>{{msg}}</h2>
</div>
<script src='../js/vue.js'></script>
<script>
setTimeout(function(){
const app = new Vue({
el:'#app',
data:{
message:'你好',
msg:'嗯嗯'
}
})
},1000)
</script>
</body>
</html>
v-cloak--Vue学习第一天
于 2022-10-12 21:26:16 首次发布