我是使用import导入没有问题,用 webpack 生成的时候,发现用 Vue.component() 注册会报错,检查发现解决方法,删除new里的 components

import xyz from './components/head.vue';

使用全局注册组件时,须在新建实例的选项中将 components 删除

Vue.component('xyz ', require('./components/head.vue'));

new Vue({
  el: '#app'
  //components: { xyz }
});

标签: none

添加新评论