UNPKG

@vuemap/vue-amap

Version:

高德地图vue3版本封装

16 lines (14 loc) 305 B
const makeInstaller = (components = []) => { const apps = []; const install = (app) => { if (apps.includes(app)) return; apps.push(app); components.forEach((c) => app.use(c)); }; return { install }; }; export { makeInstaller }; //# sourceMappingURL=make-installer.mjs.map