UNPKG

sure-ui

Version:

A Component Library for Vue 3

21 lines (18 loc) 463 B
import './packages/constants/index.mjs'; import { version } from './version.mjs'; import { INSTALLED_KEY } from './packages/constants/key.mjs'; const makeInstaller = (components = []) => { const install = (app) => { if (app[INSTALLED_KEY]) { return; } app[INSTALLED_KEY] = true; components.forEach((c) => app.use(c)); }; return { version, install }; }; export { makeInstaller }; //# sourceMappingURL=make-installer.mjs.map