Vue 禁止输入框输入空格

56 阅读1分钟
<template>
  <div>
    <input
      type="text"
      v-model="text"
      @input="(e) => text = e.target.value.replace(/\s/g,'')"
    >
  </div>
</template>

<script setup>
import { ref } from 'vue'
let text = ref(undefined)
</script>