亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue3.0如何實現自定義指令

發布時間:2021-06-28 10:42:12 來源:億速云 閱讀:215 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Vue3.0如何實現自定義指令,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

第一步

在main.js

在src下簡歷對應的文件夾

import Directives from "@/Directives/index";// 自定義指令(@ 代表src)
const app = createApp(App);
app.use(Directives);
app.mount("#app");

Vue3.0如何實現自定義指令

第二步

import copy from "./copy"; // 引入需要的指令

const directivesList = {
  copy // 掛載
};

const directives = {
  install: function (app) {
    Object.keys(directivesList).forEach((key) => {
      app.directive(key, directivesList[key]); // 注冊
    });
  }
};

export default directives;// 拋出

第三步

在copy.js 寫入我們的指令內容 Vue2 與Vue3只是一些生命周期函數修改

import { ElMessage } from "element-plus";
const copy = {
  mounted (el, { value }) {
    el.$value = value;
    el.handler = () => {
      if (!el.$value) {
        // 值為空的時候,給出提示
        ElMessage.warning({
          message: "您好,復制的值不能為空。",
          type: "warning"
        });
        return;
      }
      if (window.clipboardData) {
        window.clipboardData.setData("text", el.$value);
      } else {
        (function (content) {
          document.oncopy = function (e) {
            e.clipboardData.setData("text", content);
            e.preventDefault();
            document.oncopy = null;
          };
        })(el.$value);
        document.execCommand("Copy");
      }

      ElMessage.success("復制成功");
    };
    // 綁定點擊事件
    el.addEventListener("click", el.handler);
  },
  beforeUpdate (el, {
    value
  }) {
    el.$value = value;
  },
  unmounted (el) {
    el.removeEventListener("click", el.handler);
  }
};

export default copy;

關于“Vue3.0如何實現自定義指令”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临桂县| 兰州市| 舟曲县| 科技| 石河子市| 玛纳斯县| 革吉县| 延长县| 云安县| 淮北市| 湖口县| 即墨市| 三江| 赣榆县| 工布江达县| 若尔盖县| 大余县| 晴隆县| 交城县| 富锦市| 南溪县| 疏勒县| 大洼县| 桓台县| 太仓市| 鄢陵县| 武汉市| 瑞金市| 巫山县| 聊城市| 大丰市| 体育| 汨罗市| 舟山市| 西乌| 百色市| 南昌市| 禄劝| 永修县| 女性| 九江市|