ivue-material-plus
Version:
A high quality UI components Library with Vue.js
28 lines (21 loc) • 832 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var normalizeWheel = require('normalize-wheel-es');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var normalizeWheel__default = /*#__PURE__*/_interopDefaultLegacy(normalizeWheel);
const mousewheel = (element, callback) => {
if (element && element.addEventListener) {
const fn = function(event) {
const normalized = normalizeWheel__default["default"](event);
callback && Reflect.apply(callback, this, [event, normalized]);
};
element.addEventListener("wheel", fn, { passive: true });
}
};
const Mousewheel = {
beforeMount(el, binding) {
mousewheel(el, binding.value);
}
};
exports["default"] = Mousewheel;
//# sourceMappingURL=mousewheel.js.map