Vue3中Element Plus==el-eialog弹框中的input无法获取表单焦点
有弹框情况下
<template>
<input ref="input" />
</template>
<script setup>
import { ref, onMounted } from 'vue'
// 声明一个 ref 来存放该元素的引用
// 必须和模板里的 ref 同名
const input = ref(null)
onMounted(() => {
nextTick(() => {
nextTick(() => {
input.value.focus();
});
});
})
</script>