1. 首页
  2. 编程语言
  3. C
  4. Vue关于组件化开发知识点详解

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

上传者: 2020-11-22 03:21:56上传 PDF文件 44.88KB 热度 8次
全局组件注册 Vue.component('first-component', { data: function () { return { count: 0 } }, template: '<button @click="count++">{{ count }}</button>' }) data 必须是一个函数 组件模板内容必须是单个根元素 组件模板内容可以是模板字符串 全局组件可以嵌套全局组件 组件命名方式 Vue.component('first-component', {/* .... */}) // 普通标签模板中不能使用驼峰, 只能
下载地址
用户评论