直播系统源代码,Vue 禁止输入框输入空格

直播系统源代码,Vue 禁止输入框输入空格

 

<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>

以上就是 直播系统源代码,Vue 禁止输入框输入空格,更多内容欢迎关注之后的文章

 

posted @ 2023-11-16 14:00  云豹科技-苏凌霄  阅读(5)  评论(0编辑  收藏  举报