div中{{msg}}不显示
<div id="root">{{msg}}</div>
<script>
new Vue({
el:"#root",
template:'<h1>hi world {{msg}}</h1>',
data:{
msg:"hello world"
}
})
<div id="root">{{msg}}</div>
<script>
new Vue({
el:"#root",
template:'<h1>hi world {{msg}}</h1>',
data:{
msg:"hello world"
}
})
2018-05-02
举报