v-html指令
v-text指令
v-html和v-text的区别 v-html只能显示标签内容不读取标签,v-text读取内容也读取标签
v-pre指令
显示标签下的内容不读取Vue
v-once指令
只执行第一次Vue内容
v-cloak指令与beforemount
[v-cloak]{
display: none;
}
new Vue({
el:'#app',
data:{
msg:"12314546"
},
beforeMount:function(){
alert(1111)
}
})