UNPKG

sinosoft-ap-ui

Version:
40 lines (35 loc) 755 B
import cropper from './cropper/index.js'; import cropperjs from './cropperjs/index.js'; import editor from './editor/index.js'; import ueditor from './ueditor/index.js'; import screen from './screen/index.js'; import video from './video/index.js'; import audio from './audio/index.js'; const components = [ cropper, cropperjs, editor, ueditor, screen, video, audio ]; const install = function (Vue, opts = {}) { components.map(component => { Vue.component(component.name, component); }); }; if (typeof window !== 'undefined' && window.Vue) { install(window.Vue); } export default { version: '1.0.1', install, cropper, cropperjs, editor, ueditor, screen, video, audio };