2019-11-13 15:54:43 +08:00

31 lines
652 B
JavaScript

// packages / index.js
// 导入单个组件
import AliplayerV2 from './AliplayerV2';
// 以数组的结构保存组件,便于遍历
const components = [
AliplayerV2
];
// 定义 install 方法
const install = (Vue) =>{
if (install.installed) return false;
install.installed = true;
// 遍历并注册全局组件
components.map(component => {
Vue.component(component.name, component)
});
};
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {
// 导出的对象必须具备一个 install 方法
install,
AliplayerV2,
// 组件列表
...components
};