自定义组件是需要先注册才能使用的,分全局注册和局部注册。全局注册:Vue.component('my-component', {// 选项})new Vue({el: '#some-element',// 选项})