Vue3 自定義指令

huahua11發表於2023-04-25

< div id = " app " >     < p > 頁面載入時,input 元素自動獲取焦點: </ p >     < input v-focus > </ div > < script > const app = Vue.createApp({}) // 註冊一個全域性自定義指令 `v-focus` app.directive('focus', {  // 當被繫結的元素掛載到 DOM 中時……  mounted(el) {    // 聚焦元素    el.focus()  } }) app.mount('#app') </ script >

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70029331/viewspace-2948571/,如需轉載,請註明出處,否則將追究法律責任。

相關文章