vant/packages/mixins/click-outside.js
2019-02-19 16:04:29 +08:00

18 lines
359 B
JavaScript

import { on, off } from '../utils/event';
export const ClickOutsideMixin = config => ({
mounted() {
config.handler = event => {
if (!this.$el.contains(event.target)) {
this[config.method]();
}
};
on(document, config.event, config.handler);
},
beforeDestroy() {
off(document, config.event, config.handler);
}
});