UNPKG

quasar

Version:

Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time

27 lines (25 loc) 691 B
export default { computed: { __refocusTargetEl () { if (this.disable !== true) { return this.$createElement('span', { ref: 'refocusTarget', staticClass: 'no-outline', attrs: { tabindex: -1 } }) } } }, methods: { __refocusTarget (e) { if (e !== void 0 && e.type.indexOf('key') === 0) { if (document.activeElement !== this.$el && this.$el.contains(document.activeElement) === true) { this.$el.focus() } } else if ((e === void 0 || this.$el.contains(e.target) === true) && this.$refs.refocusTarget !== void 0) { this.$refs.refocusTarget.focus() } } } }