🐱 个人主页:不叫猫先生
🙋‍♂️ 作者简介:前端领域新星创作者、阿里云专家博主,专注于前端各领域技术,共同学习共同进步,一起加油呀!
💫系列专栏:vue3从入门到精通、TypeScript从入门到实践
📢 资料领取:前端进阶资料以及文中源码可以找我免费领取
🔥 前端学习交流:博主建立了一个前端交流群,汇集了各路大神,互相交流学习,期待你的加入!(文末有我wx或者直接私信)

🍬目录

  • 🌮前言
  • 🥙一、自定义指令分类
  • 🥪二、Vue2.x自定义指令钩子函数
    • (1)bind与update区别
    • (2)update与componentUpdated区别
    • (3)钩子函数的参数(摘自官网)
    • (4)局部自定义指令
    • (5)全局自定义指令
    • (6)简写形式
  • 🍔 三、Vue3.x自定义指令钩子函数
    • (1)指令钩子函数(摘自官网)
    • (2)钩子函数参数
    • (3)局部注册两种方式
    • (4)全局注册
    • (5)简化形式

🌮前言

vue自定义指令(2.x丨3.x)可以帮助我们实现需要操作,比如防抖、节流、懒加载、输入框自动聚焦等等,使用起来非常方便,比如vue自带的v-text、v-html、v-show、v-if等等。

🥙一、自定义指令分类

🥪二、Vue2.x自定义指令钩子函数

(1)bind与update区别

相同点:

异同点:

(2)update与componentUpdated区别

Vue.directive('focus', {
  inserted: function (el) {
    console.log(el.parentNode, 'inserted')
    el.focus();
  },
  bind: function (el) {
    console.log(el.parentNode, 'bind')
    el.focus();
  },
});

输出结果如下,说明执行bind时,还没父节点;执行inserted时,已有父节点。
vue2.x与vue3.x中自定义指令详解

(3)钩子函数的参数(摘自官网)

 <p v-style:[direction]="connect">Enter connection information to connect</p>
    directives: {
        style: {
            bind(el,binding) {
              console.log(binding,'binding')
                el.style.fontSize = "30px";
                el.style.color = "blue";
            },
        },
    },

(4)局部自定义指令

在组件A.vue,用自定义指令实现改变文字颜色

<p v-style>文字描述</p>
 directives: {
    style: {
      bind(el,binding) {
        el.style.fontSize = "30px";
         el.style.color = "blue";
      },
      update(el,binding){
      el.style.fontSize = "30px";
      el.style.color = "blue";
      }
    },
  },
  • style:指令的名称,使用的时候要加前面加个v-
  • bind:只会调用一次,指令 第一次 绑定到元素时会调用
  • el:是指绑定的这个dom元素本身
  • binding:获取绑定指令的信息(name:指令名称;rawName:指令全称:value:指定绑定的值)
  • update:元素第一次绑定不会触发,绑定的值发生更新触发,参数与binding是相同的,如果逻辑与bind相同的话可以直接把指令当成函数写,上面的指令是对象类型。
  • v-style:使用指令改变了元素的样式

(5)全局自定义指令

使用Vue.directive(‘指令名称’,{钩子函数})

Vue.directive('style',{
    bind(el) {
      el.style.fontSize = "30px";
      el.style.color = "blue";
    },
  },
)

(6)简写形式

如果update逻辑与bind相同的话可以直接把指令当成函数写

 directives: {
    style(){
       el.style.fontSize = "30px";
       el.style.color = "blue";
    },
  },

🍔 三、Vue3.x自定义指令钩子函数

(1)指令钩子函数(摘自官网)

const myDirective = {
  // 在绑定元素的 attribute 前
  // 或事件监听器应用前调用
  created(el, binding, vnode, prevVnode) {
    // 下面会介绍各个参数的细节
  },
  // 在元素被插入到 DOM 前调用
  beforeMount(el, binding, vnode, prevVnode) {},
  // 在绑定元素的父组件
  // 及他自己的所有子节点都挂载完成后调用
  mounted(el, binding, vnode, prevVnode) {},
  // 绑定元素的父组件更新前调用
  beforeUpdate(el, binding, vnode, prevVnode) {},
  // 在绑定元素的父组件
  // 及他自己的所有子节点都更新后调用
  updated(el, binding, vnode, prevVnode) {},
  // 绑定元素的父组件卸载前调用
  beforeUnmount(el, binding, vnode, prevVnode) {},
  // 绑定元素的父组件卸载后调用
  unmounted(el, binding, vnode, prevVnode) {}
}

(2)钩子函数参数

指令的钩子会传递以下几种参数:

(3)局部注册两种方式

<script lang="ts" setup>
// 局部指令, 变量名为驼峰命名(vFocus = v-focus)
const vFocus = {
  mounted: (el:any) => {
    el.focus()
    console.log(el, '已经自动获得焦点')
  }
}
</script>
<script lang="ts">
const vFocus = {
    focus:  {
        mounted(el:any){
            el.focus();
            console.log(el, "已经自动获得焦点");
        }
    },
};
export default {
    setup() { },
    directives: vFocus,
};
</script>

(4)全局注册

  <input type="text" v-focus>
const directives: any = {
	mounted(el: any) {
		el.focus();
		el.value = '1'
	}
}
export default {
	name: "focus",
	directives
}
import type { App } from 'vue'
import focus from './focus'
export default function installDirective(app: App) {
    app.directive(focus.name, focus.directives);
} 
import directives from './directives'
const app = createApp(App);
app.use(directives);

(5)简化形式

当update和mounted中的函数体一样时,则可以简写成如下:

const directives = (el:any) => {
		el.focus();
		el.value = '1';
}
export default {
	name: "focus",
	directives
}