UNPKG

@kidoki/vue-mosaic

Version:

Vue module, which is used to convert html content into mosaic.

13 lines (10 loc) 282 B
import VmSpan from './components/vm-span/index.vue' import VmImg from './components/vm-img/index.vue' const components = [VmSpan, VmImg] export default { install: (app, options) => { components.forEach(item => { app.component(item.name, item) }) } }