vue-picture-tools
Version:
vue picture preview tools
24 lines (20 loc) • 513 B
JavaScript
import picturelist from './packages/picture-list/index.js';
import picturepreview from './packages/picture-preview/index.js';
const components = [
picturelist,
picturepreview
]
const install = function(Vue, opts = {}) {
components.map(component => {
Vue.component(component.name, component);
})
}
/* 支持使用标签的方式引入 */
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {
install,
picturelist,
picturepreview
}