<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'
}
})
没有引入脚本 还有少了个逗号
已搞定了