vue.js的组件的data属性

每一个组件也像每一个Vue实例拥有本身的data属性和methods方法 <div id="app"> <cpn></cpn> </div> <template id="cpn"> <div> <h2>我是组件</h2> <h3>目前计数:{{count}}</h3> </div> </template> <script> //
相关文章
相关标签/搜索