UNPKG

lulouis-vant

Version:

Lightweight Mobile UI Components built on Vue

18 lines (14 loc) 358 B
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); } });