您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue3自定義指令的方法是什么”,在日常操作中,相信很多人在vue3自定義指令的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue3自定義指令的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
vue 官方提供了 v-for、v-model、v-if 等常用的內置指令。除此之外 vue 還允許開發者自定義指令。
vue 中的自定義指令分為兩類,分別是:
私有自定義指令
全局自定義指令
在每個 vue 組件中,可以在 directives 節點下聲明私有自定義指令。示例代碼如下:
<script> export default { directives: { // 自定義私有指令focus,在使用的時候要用 v-focus 。 focus: { mounted(el) { el.focus() }, }, }, } </script>
在使用自定義指令時,需要加上 v- 前綴。示例代碼如下:
<!-- 聲明自定義私有指令focus,在使用的時候要用 v-focus 。 --> <input v-focus/>
全局共享的自定義指令需要通過“單頁面應用程序的實例對象”進行聲明,示例代碼如下:
import { createApp } from 'vue' const app = createApp({ /* ... */ }) // 注冊(對象形式的指令) app.directive('my-directive', { /* 自定義指令鉤子 */ }) // 注冊(函數形式的指令) app.directive('my-directive', () => { /* ... */ }) // 得到一個已注冊的指令 const myDirective = app.directive('my-directive')
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 】
如果 mounted 和updated 函數中的邏輯完全相同,則可以簡寫成如下格式:
app.directive('focus', (el) => { // 在 mounted 和 updated 都會觸發這個函數方法 el.focus() })
在綁定指令時,可以通過“等號”的形式為指令綁定具體的參數值,示例代碼如下:
// 自定義 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自定義指令的方法是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。