github地址: https://github.com/ccyinghua/custom-global-componentvue
vue init webpack-simple custom-global-component
cnpm install
npm run dev
一、自定义vue组件,首先要建立组件文件,在loading文件夹中Loading.vue直接按照vue template相关规则写便可webpack
二、建立Loading.vue组件以后,要创建相关的js调用这个Loading.vue,进行相关配置后导出使用。index.js中中间部分配置最为重要,git
主要文件index.js代码: import LoadingComponent from './Loading.vue' const Loading={ install: function(Vue){ Vue.component('Loading',LoadingComponent) } } export default Loading 说明:Vue.component('Loading',LoadingComponent);中的'Loading', 这个命名就是在其余文件中调用这个组件的名字,例如调用这个loading能够写成<Loading></Loading>
三、使用这个组件github