el-input autofocus 不生效

524 阅读1分钟

el-input autofocus 不生效

el-input想要自动获取焦点,可以使用自定义指令的方式

directives: {
// 注册一个局部的自定义指令 v-focus
    focus: {
        // 指令的定义
        inserted(el) {
        // 聚焦元素
            if (el.querySelector('input')) {
                el.querySelector('input').focus();
            }
        },
    },
},