挂载点
<div id="app"></div>
你所要实例化的element即#app就是挂载点
模版
//挂载点 <div id="app> //模版 <h1>{{msg}}</h1> </div> <script> //实例 new Vue({ el:'#app', temeplate:'<h1>{{msg}}</h1>',//模版 data:function(){ return{ msg:'Hello World!' } } }); </script>
挂载点里的内容就是模版
挂载点
<div id="app"></div>
你所要实例化的element即#app就是挂载点
模版
//挂载点 <div id="app> //模版 <h1>{{msg}}</h1> </div> <script> //实例 new Vue({ el:'#app', temeplate:'<h1>{{msg}}</h1>',//模版 data:function(){ return{ msg:'Hello World!' } } }); </script>
挂载点里的内容就是模版