vue2.0和vue3.0自定義指令的用法


html

<div v-setcolor="red" ></div>

1.vue2.0寫法

Vue.directive('setcolor', {
   bind(el, binding, vnode)  {
      el.style.color = binding
   }
})

2.vue3.0寫法(beforeMount為vue3.0的生命周期)

const app = Vue.createApp({})

app.directive('setcolor', { beforeMount(el, binding, vnode) { el.style.color = binding.value } })

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM