显示什么都没有?
<div id="root">
<h1 v-text="number"></h1>
</div>
new Vue({
el:"#root",
template:"<h1>hello {{msg}}</h1>",
data:{
msg:"hello world hello"
number:'123'
}
})
<div id="root">
<h1 v-text="number"></h1>
</div>
new Vue({
el:"#root",
template:"<h1>hello {{msg}}</h1>",
data:{
msg:"hello world hello"
number:'123'
}
})
2019-06-19
举报