1,组件的创建: var myCom = Vue.extend({ template: '<div>这是我的组件</div>' }) 2,注册组件: Vue.component('my-com',myCom)