1.vue组件
vue组件是vue.js中最强大的功能之一,可用来扩展html元素,封装可重用的代码
(1)全局注册
Vue.component(‘my-component-name’, { /* … */ })
(2)局部注册就是在对象内注册
vue父子组件的通信是最常见的通信方式
(3)组件树 使用组件实例选项components注册,实现组件树的效果
(4)模板分离
在script标签里使用 text/x-template 类型,并且指定一个 id
Hello hello hello
Vue.component('hello-world', { template: '#hello-world-template' }) 上面代码等价于 Vue.component('hello-world', { template: 'Hello hello hello
' })