app直播源码,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>
以上就是 app直播源码,Vue 禁止输入框输入空格,更多内容欢迎关注之后的文章
标签:Vue,text,app,空格,输入框,源码 From: https://www.cnblogs.com/yunbaomengnan/p/17702344.html