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