Vue3自定义指令解析,快拿去收藏使用一波~😎

扯皮

现在有很多自定义指令封装好可实现的功能,都能从hooks函数中找到,例如大名鼎鼎的VueUse,大部分功能都有。

至于为什么写这篇文章呢,本着复盘记录vue技术点加上业务当中涉及到的一部分需求(要是用到第三方插件岂不是大材小用了),主要还是复盘一波理论上的内容,便于mianxi~(懂得都懂),于是乎就写下一篇文章作为经验分享 个人参考使用~

构思

简简单单就拿常见的【复制】功能来说,利用到vue的特性是非常棒的。

举个栗子:假设我们需要展示的一些数据或者链接来说,根据用户角度考虑,一定是体验度越高充分表明这家业务水平做的优秀~

展示

介于我用的是Vue3 Ts Vite Element-Plus的技术栈,运用到尤大极力推荐的语法糖写法(嘎嘎香),

在根目录下创建directives指令文件夹,声明directive.ts作为全局指令存储文件,

为什么这么做呢?因为鉴于到后期的维护性能来说,

放在全局较为妥当,当然!局部的指令也可以放在这里噢~ 【具体需求具体使用】

main.ts 挂载全局指令

TypeScript 复制代码
import myDirective from "@/directives/directive"
myDirective(app)
app.mount("#app");

directive.ts 全局指令

TypeScript 复制代码
const myDirective = (app: any) => {
    app.directive("copy", {
        mounted: (el: any, binding:any, {value}: { value: string },) => {
            el.value = value
            el.handler = () => {
                if (!el.value) return ElMessage({message: "Nothing to copy!", type: "warning"})
                if (navigator.clipboard && window.isSecureContext) {
                    navigator.clipboard.writeText(el.value)
                        .then(() => {
                            return ElMessage({message: "Copy successfully!", type: "success"})
                        })
                        .catch(() => {
                            return ElMessage({message: "Replication failed!", type: "error"})
                        })
                } else {
                    let textarea = document.createElement('textarea')
                    textarea.readOnly = true
                    textarea.style.position = 'absolute'
                    textarea.style.left = '-9999px'
                    textarea.value = el.value
                    document.body.appendChild(textarea)
                    textarea.select()
                    const result = document.execCommand('Copy')
                    if (result) ElMessage({message: "Copy successfully!", type: "success"})
                    else ElMessage({message: "Replication failed!", type: "error"})
                    document.body.removeChild(textarea)
                }
            }
            el.addEventListener('click', el.handler)
        },
        updated: (el: any, {value}: { value: string }) => el.value = value,
        unmounted: (el: any) => el.removeEventListener('click', el.handler)
    })
}

demo.vue 使用指令

html 复制代码
<template>
  <div class="tw-tag-slide flex items-center gap-2">每日一文
    <i-ep-CopyDocument class="text-[#000] cursor-pointer" v-copy="time"/>
  </div>
</template>
<script setup lang="ts">
import {getHour} from "@/utils/globaltime";
const time = getHour();
</script>

<style scoped lang="scss">

</style>

效果

End

看似较为复杂难懂的东西只需一个demo即可快速理解上手,这里是小李的李li,若对您有帮助,记得点赞收藏,给个鼓励!公zong号:【小李的李li】

相关推荐
老毛肚5 小时前
jeecgboot vue TS & 模板化 04
前端·javascript·vue.js
卤蛋fg610 小时前
高性能 Vue 甘特图:vxe-gantt 如何秒级渲染万级任务数据
vue.js
逐光老顽童12 小时前
用 Go 实现一个 LLM 路由网关:Thompson Sampling 与自适应故障转移实践
vue.js·go
xkxnq17 小时前
第八阶段:工程化、质量管控与高级拓展(132天),Vue项目文档自动化:VuePress搭建组件文档(组件示例+API说明)
javascript·vue.js·自动化
ct97819 小时前
Promise
前端·javascript·vue.js
rising start19 小时前
五、Vue3 ref 用法 + Props 完整指南
前端·javascript·vue.js
web打印社区19 小时前
前端html转换pdf并静默打印pdf最佳实现路径
前端·javascript·vue.js·electron·html
ct97820 小时前
ES6 新特性
前端·vue.js·性能优化
无聊的老谢1 天前
Vue 3 + TypeScript 构建大型电信运维平台的前端架构设计
前端·vue.js·typescript
薛先生_0991 天前
vue-路由重定向
前端·javascript·vue.js