vue3.x的自定义指令动态指令参数

本文详细讲解了如何在Vue 3.0中创建自定义指令,包括参数解析、动态值绑定,并重点介绍各个生命周期钩子函数的使用,以及如何在beforeUpdate中响应指令参数变化。通过实例演示了如何设置动态距离并实时更新元素样式。
摘要由CSDN通过智能技术生成

1.vue3.x的自定义指令参数

import { createApp } from 'vue';
import App from './App.vue';
app.directive('time', {
    created() {
        console.log('created生命周期函数')
    },
    beforeMount:(el) => {
        // console.log(binding, '什么')
        el.style.color = 'red'
    },
    mounted(el, binding) {
        console.log(el, binding.value)
        el.style.position = 'fixed'
        const x = binding.arg || 'bottom';
        el.style[x] = binding.value + 'px';
        console.log('挂载的函数mounted')
    },
    beforeUpdate(el, binding) {
        console.log(el, binding)
        const x = binding.arg || 'bottom';
        el.style[x] = binding.value + 'px';
        console.log('跟新全的函数beforeUpdate')
    },
    componentUpdated() {
        console.log('componentUpdated组件跟新的函数')
    },
    beforeUnmount() {
        console.log('beforeUnmount组件销毁前的函数')
    },
})
app.mount('#app');

这里我们需要知道自定义指令的钩子函数的参数
在这里插入图片描述
从这里我们可以看出.
binding.value 就是自定义指令参数的值
binding.arg 就是自定义指令的参数的属性名;

所以在自定义指令的mounted钩子函数中,我们是这么写的

mounted(el, binding){
	el.style.position = 'fixed'; // 将这个DOM设置成固定定位
	const x = binding.arg || 'top'; // 获取自定义指令的参数属性
	el.style[x] = bingind.value + 'px'; // 这样就ok
}

使用

<div v-time:bottom="300">我是一个自定义指令</div>

最终的效果就是div会距离bottom边300px像素。

2.将自定义指令参数设置为动态的

import { ref } from 'vue';
export default {
	inheritAttrs: false,
	setup(){
		const distance = ref(20); // 距离的长度
		const distanceChagne = () => {
			distance.value += 10;
		}
		return {
			distance,
			distanceChagne
		}
	}
}

使用

<template>
	<div v-time:bottom="distance">自定义指令</div>
	<button @click="distanceChagne">修改distance</button>
</template>

点击按钮是会修改distance的值,我需要在自定义指令的对应的钩子函数中进行操作beforeUpdate

beforeUpdate(el, binding){
	const x = binding.arg || 'bottom';
    el.style[x] = binding.value + 'px';
}

或者直接使用函数简写

app.directive('time', (el, time) => {
	el.style.position = 'fixed';
	const x = binding.arg || 'bottom';
    el.style[x] = binding.value + 'px';
})

这样每一次更新,都会触发。

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值