mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
18 lines
359 B
JavaScript
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);
|
|
}
|
|
});
|