Vue——input输入内容去除空格
7/11/2026

文章链接:https://blog.csdn.net/qq_43201350/article/details/120398796

<input v-model.trim="searchKey" type="text">
 
data() {
return {
searchKey: ''
}
}