UNPKG

mt-ui-components-vue3

Version:

玛果添实UI组件库(Vue3)

15 lines 393 B
/*eslint import/namespace: ['error', { allowComputed: true }]*/ import * as components from './components'; export * from './components'; export var install = function install(app) { Object.keys(components).forEach(function (key) { var component = components[key]; if (component.install) { app.use(component); } }); return app; }; export default { install: install };