createApp({}) // 注册一个全局自定义指令`v-focus` app.directive('focus', { // 当被绑定的元素插入到DOM 中时…… mounted(el) { // Focus the element el.focus() } }).
確定! 回上一頁