@vuemap/vue-amap
Version:
高德地图vue3版本封装
19 lines (16 loc) • 452 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);
}
exports.bindInstanceEvent = bindInstanceEvent;
exports.removeInstanceEvent = removeInstanceEvent;
//# sourceMappingURL=eventHelper.js.map