UNPKG

@kfl-ui/utils

Version:

Vue 工具集合,包含自动路由生成器

12 lines (11 loc) 184 B
// with-install.ts var withInstall = (comp) => { comp.install = (app) => { const { name } = comp; app.component(name, comp); }; return comp; }; export { withInstall };