vue2 全局批量注册指令 directives 123456789101112131415161718const directives = { focus: (el) => { el.focus(); }, }export default { install(Vue) { Object.keys(directives).forEach(item => { Vue.directive(item, { inserted: directives[item] }) }) }} 12345import directives from './directives/index'Vue.use(directives); 使用方式: 效果: vue2 #vue2 #web #指令 vue2 全局批量注册指令 directives https://github.com/chergn/chergn.github.io/720e7de6975f/ 作者 全易 发布于 2024年3月28日 许可协议 vue2 使用ref获取并操作DOM元素 上一篇 vue2 全局批量注册过滤器 filters 下一篇