Vue 指令01——v-test和v-html的使用
Vue 指令01——v-test和v-html的使用
V-test指令
作用:替换标签里的文本内容
v-test的实例
1234
12{{message+'哭兮兮'}}
var app=new Vue({
el:"#app",
data:{
message:"笑哈哈"
}
})
v-html指令
作用:在标签内容替换成标签
v-html的实例
1234
var app=new Vue({
el:"#app",
data:{
message:"百度"
}
})