自定义指令简介及用法

自定义指令

  • 用法

    • 全局注册:在main.ts文件中引入

      Vue.directive('focus', {
      	inserted: function (el) {
      		if (focusTimer) {
      			clearTimeout(focusTimer);
      		}
      		focusTimer = setTimeout(() => {
      			// 100毫秒延迟解决第二次点击弹框,输入框不自动获取焦点的bug
      			el.focus();
      		}, 100);
      	},
      });
      
    • 局部注册:在使用该指令的组件中申明
      在这里插入图片描述

    • 在模板中使用

      <a-input v-focus></a-input>
      
  • 应用场景

    1. 输入框自动聚焦:v-focus

      let focusTimer: number | null = null;
      
      Vue.directive('focus', {
      	inserted: function (el) {
      		if (focusTimer) {
      			clearTimeout(focusTimer);
      		}
      		focusTimer = setTimeout(() => {
      			// 100毫秒延迟解决第二次点击弹框,输入框不自动获取焦点的bug
      			el.focus();
      		}, 100);
      	},
      });
      
    2. 表单的重复提交:v-throttle

      // 传参 <button v-throttle="[()=>{showAddModal()}, 5000]" />
      // 不传参 <button v-throttle="showAddModal" />
      Vue.directive('throttle', {
      	inserted: function (el, binding) {
      		let cbFun: number | null = null;
      		el.addEventListener('click', () => {
      			let func;
      			let throttleTime = 2000;
      			if (binding.value instanceof Array) {
      				[func, throttleTime] = binding.value;
      			} else {
      				func = binding.value;
      			}
      			// 如果是第一次执行或者到了节流时间
      			if (!cbFun) {
      				func();
      				cbFun = setTimeout(() => {
      					cbFun = null;
      				}, throttleTime);
      			}
      		});
      	},
      });
      
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值