📅  最后修改于: 2022-03-11 15:04:33.259000             🧑  作者: Mango
// Register a global custom directive called `v-focus`
Vue.directive('focus', {
// When the bound element is inserted into the DOM...
inserted: function (el) {
// Focus the element
el.focus()
}
})