顯示什么都沒有?
<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
舉報
2020-04-15
沒有引入腳本 還有少了個逗號
2019-06-19
已搞定了