渲染时<div class="root"></div>不见了
<div class="root"></div>
<script>
new Vue({
el: '.root',
template: '<h1>{{msg}}</h1>',
data: {
msg: "hello word"
}
})
</script>
为什么在页面渲染的时候是
<h1>hello word</h1>
而不是
<div class="root"><h1>hello word</h1></div>
<div class="root"></div>
<script>
new Vue({
el: '.root',
template: '<h1>{{msg}}</h1>',
data: {
msg: "hello word"
}
})
</script>
为什么在页面渲染的时候是
<h1>hello word</h1>
而不是
<div class="root"><h1>hello word</h1></div>
2018-08-09
举报