📜  Vue 指令 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:33.259000             🧑  作者: Mango

代码示例2
// 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()
  }
})