vue2 你该知道的一切(下)

橙光笔记 at 
本章继续回顾 Vue 相关的知识,主要针对组件这块,基础部分请看上一章。组件基础简单的组件:12345678910111213141516 // 自定义组件 const CustomButton = { template: 'Custom button' }; new Vue({ el: '#app', components: { CustomButton } });上面的组件需要在 components 中引入,当然也可以定义一个全局的组件:123Vue.component('custom-button', { template: 'Cust……