<div id="app" v-cloak>
<h2>{{message}}</h2>
</div>
[v-cloak] {
width:200px;
heigth:200px;
background: skyblue;
}
setTimeout(function () {
const app = new Vue({
el: '#app',
data: {
message: '你好啊'
}
})
},1000)
This Pen doesn't use any external CSS resources.