if判断语句这样写合理吗 为什么感觉这样写很low呢<input type="text" v-model="name"><button @click="add">提交</button>data () { return {
name:'',
user:[]
}
},
methods: {
add () { if (this.user.length > 5){
alert('长度过长') return false
} this.user.push(this.name) this.name = ''
}
}关注 | 5收藏
添加回答
举报
0/150
提交
取消