2020
09-29
09-29
Vue关于组件化开发知识点详解
全局组件注册Vue.component('first-component',{data:function(){return{count:0}},template:'<button@click="count++">{{count}}</button>'})data必须是一个函数组件模板内容必须是单个根元素组件模板内容可以是模板字符串全局组件可以嵌套全局组件组件命名方式Vue.component('first-component',{/*....*/})//普通标签模板中不能使用驼峰,只能在template中使用驼峰方式Vue.component('firstComponent',...
继续阅读 >