Files
hoppscotch/packages/hoppscotch-app/plugins/v-focus.js
2021-09-10 00:28:28 +05:30

8 lines
113 B
JavaScript

import Vue from "vue"
Vue.directive("focus", {
inserted: (el) => {
Vue.nextTick(() => el.focus())
},
})