@vuemap/vue-amap
Version:
高德地图vue3版本封装
18 lines (15 loc) • 332 B
JavaScript
;
const makeInstaller = (components = []) => {
const apps = [];
const install = (app) => {
if (apps.includes(app))
return;
apps.push(app);
components.forEach((c) => app.use(c));
};
return {
install
};
};
exports.makeInstaller = makeInstaller;
//# sourceMappingURL=make-installer.js.map