【发布时间】:2022-11-14 12:26:54
【问题描述】:
<template>
<button @click="focusInput">Click me to focus on the input</button>
<input ref="inputField" type="text">
</template>
<script setup>
const focusInput = () => {
this.$refs.inputField.focus();
};
</script>
我正在尝试通过单击按钮将焦点设置到输入字段中,但不适用于 Vue 3。如果有人可以提供帮助,我将不胜感激。谢谢
【问题讨论】:
-
在 vuejs3 codesandbox.io/s/vuejs3-auto-focus-qeme8w 中运行这段代码
标签: javascript vue.js vue-component vuejs3