Vue关于组件化开发知识点详解

奋斗的小小蚂蚁 6 0 PDF 2020-11-22 03:11:56

全局组件注册 Vue.component('first-component', { data: function () { return { count: 0 } }, template: '<button @click="count++">{{ count }}</button>' }) data 必须是一个函数 组件模板内容必须是单个根元素 组件模板内容可以是模板字符串 全局组件可以嵌套全局组件 组件命名方式 Vue.component('first-component', {/* .... */}) // 普通标签模板中不能使用驼峰, 只能

用户评论
请输入评论内容
评分:
暂无评论