<template>
    <input type="text" v-model="inputValue" @keyup.enter="handleKeyUpEnter">
  </div>
</template>
<script>
import { ref } from 'vue';
export default {
  setup() {
    const inputValue = ref('');
    function handleKeyUpEnter() {
      console.log('回车键被按下了!');
    return {
      inputValue,
      handleKeyUpEnter,
</script>

在这个示例中,在 input 中输入文本时,按下回车键时会触发 handleKeyUpEnter 方法,控制台会输出一段文字。你可以根据自己的需求修改 handleKeyUpEnter 方法以实现相关功能。

  • 一只正在成长的程序猿 Vue.js
  •