• wanli's avatar
    update · e339fd7a
    wanli authored
    e339fd7a
index.js 259 Bytes
import FileExplorer from './FileExplorer.vue'

const components = {
    FileExplorer: FileExplorer,
}

const install = function (Vue) {
    Object.keys(components).forEach(key => {
        Vue.component(key, components[key]);
    });
}

export default install