91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

vue3自定義指令的方法是什么

發布時間:2022-11-23 09:55:33 來源:億速云 閱讀:150 作者:iii 欄目:開發技術

這篇文章主要介紹“vue3自定義指令的方法是什么”,在日常操作中,相信很多人在vue3自定義指令的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue3自定義指令的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

1. 什么是自定義指令

vue 官方提供了 v-for、v-model、v-if 等常用的內置指令。除此之外 vue 還允許開發者自定義指令。

vue 中的自定義指令分為兩類,分別是:

  • 私有自定義指令

  • 全局自定義指令

2. 聲明私有自定義指令的語法

在每個 vue 組件中,可以在 directives 節點下聲明私有自定義指令。示例代碼如下:

<script>
export default {
  directives: {
      // 自定義私有指令focus,在使用的時候要用 v-focus 。
    focus: {
      mounted(el) {
        el.focus()
      },
    },
  },
}
</script>

3. 使用自定義指令

在使用自定義指令時,需要加上 v- 前綴。示例代碼如下:

<!-- 聲明自定義私有指令focus,在使用的時候要用 v-focus 。 -->    
<input v-focus/>

4. 聲明全局自定義指令的語法

全局共享的自定義指令需要通過“單頁面應用程序的實例對象”進行聲明,示例代碼如下:

import { createApp } from 'vue'

const app = createApp({
  /* ... */
})

// 注冊(對象形式的指令)
app.directive('my-directive', {
  /* 自定義指令鉤子 */
})

// 注冊(函數形式的指令)
app.directive('my-directive', () => {
  /* ... */
})

// 得到一個已注冊的指令
const myDirective = app.directive('my-directive')

5. updated 函數

mounted 函數只在元素第一次插入 DOM 時被調用,當 DOM 更新時 mounted 函數不會被觸發。 updated 函數會在每次 DOM 更新完成后被調用。示例代碼如下:

// 聲明全局自定義指令
app.directive('focus', {
  mounted(el) {
    console.log('mounted')
    el.focus()
  },
  updated(el) {
    console.log('updated')
    el.focus()
  },
})

注意:在 vue2 的項目中使用自定義指令時,【 mounted 要換成 bind 】【 updated 要換成 update 】

6. 函數簡寫

如果 mounted 和updated 函數中的邏輯完全相同,則可以簡寫成如下格式:

app.directive('focus', (el) => {
    // 在 mounted 和 updated 都會觸發這個函數方法
  el.focus()
})

7. 指令的參數值

在綁定指令時,可以通過“等號”的形式為指令綁定具體的參數值,示例代碼如下:

// 自定義 v-color 指令
app.directive('color', (el, binding) => {
    // binding.value 就是通過 = 綁定的值,在傳值的時候傳到這 binding.value
  el.style.color = binding.value
})

附:下面根據自定義指令知識點衍生的一個小例子

該例子沒有特別的技術難點。只是為了驗證一下這兩天學習的vue3部分知識點,存粹是一個練手記錄~~~

//示例

<template>
    <p>
        改變方向:<input type="text" v-model="direction" />
    </p>
    <p>
        改變數值:<input type="range" min="0" :max="maxNum" v-model="pinPadding" />
    </p>
    <p>
        <button @click="reset">重置</button>
    </p>
    <div >
        <p v-pin:[direction]="pinPadding">數據:{{pinPadding}},方向:{{direction}}</p>
    </div>
</template>
<script>
    import two from './components/two.vue'
    import {
        ref,
        reactive,
        defineComponent,
        computed
    } from 'vue'
    export default ({
        name: 'lycApp',
        components: {
            two
        },
        setup(prop, context) {
            const direction = ref('left')
            const pinPadding = ref(0)
            const reset = () => {
                direction.value = 'left'
                pinPadding.value = 0
            }
            const maxNum = computed(()=>{
                if(direction.value == 'right' || direction.value == 'left'){
                    return 650
                }else{
                    return 360
                }
            })
            return {
                direction,
                pinPadding,
                reset,
                maxNum
            }
        },
        directives: {
            pin: {
                mounted(el, binding) {
                    el.style.position = 'absolute'
                    const s = binding.arg
                    el.style[s] = binding.value + 'px'
                },
                updated(el, binding) {
                    el.removeAttribute('style')
                    el.style.position = 'absolute'
                    const s = binding.arg
                    el.style[s] = binding.value + 'px'
                }
            }
        }
    })
</script>

到此,關于“vue3自定義指令的方法是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

阿拉尔市| 洞口县| 澎湖县| 汽车| 大庆市| 栾城县| 开封市| 新密市| 余江县| 龙泉市| 正蓝旗| 克什克腾旗| 楚雄市| 安徽省| 阿尔山市| 若尔盖县| 辽中县| 南漳县| 白玉县| 平阴县| 开阳县| 德江县| 五家渠市| 太仓市| 闻喜县| 岳阳市| 息烽县| 卓尼县| 昌江| 阳原县| 阜城县| 白城市| 尉氏县| 普陀区| 新巴尔虎左旗| 滨海县| 广灵县| 临夏市| 固原市| 屏山县| 丹东市|