使用“v-model”双向绑定数据来实现功能需求,比"@input"更实用,验证表单的代码也更简洁。
废话不多说了,呵呵,直接上代码:
<template>
<view>
<input v-model="searchKey" placeholder="请输入订单号" />
<button @click="emptyInput()">清空</button>
</view>
</template>
<script>
data() {
return {
searchKey: 'input的值'
}
},
methods: {
emptyInput(){
this.searchKey='';
}
}
</script>
1 个评论
要回复文章请先登录或注册
1***@qq.com