vant/packages/mixins/click-outside.js
2019-01-27 08:50:20 +08:00

18 lines
341 B
JavaScript

import { on, off } from '../utils/event';
export default 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);
}
});