@vuemap/vue-amap
Version:
高德地图vue3版本封装
16 lines (14 loc) • 391 B
JavaScript
function bindInstanceEvent(instance, eventName, handler) {
if (!instance || !instance.on) {
return;
}
instance.on(eventName, handler);
}
function removeInstanceEvent(instance, eventName, handler) {
if (!instance || !instance.off) {
return;
}
instance.off(eventName, handler);
}
export { bindInstanceEvent, removeInstanceEvent };
//# sourceMappingURL=eventHelper.mjs.map