标签:class template style 标签 关系 roo vue ejs data
<body> <div id=‘root‘> <h1>{{msg}}</h1> </div> <script> new Vue({ el:‘#root‘, data:{ msg:‘hello world‘ } }) </script> </body>
挂载点:element对应的标签
<div id=‘root‘></div>
<h1>{{msg}}</h1>
new Vue({ el:‘#root‘, template:‘<h1>{{msg}}</h1>‘, data:{ msg:‘hello world‘ } })
这种写在实例里面也可以,所以模板就是挂载点内部的内容,模板可以写在挂载点内部,也可以写在实例里面template属性里面
标签:class template style 标签 关系 roo vue ejs data
原文地址:https://www.cnblogs.com/wzndkj/p/9534637.html