当前位置: 代码迷 >> 综合 >> Vue 使用van-search和监听@Watch实现搜索
  详细解决方案

Vue 使用van-search和监听@Watch实现搜索

热度:43   发布时间:2023-10-10 20:27:29.0

van-search:在输入框输入数据,当在PC端点击回车开始搜索,在手机端点击输入法中的搜索开始搜索,

@Watch:主要用于当点击取消或删除输入框中的数据监听数据的变化

.vue

<van-searchv-model="keywordSubordinate"placeholder="请输入搜索关键词"@search="querySubordinateList"/>

 

.ts

private keywordSubordinate = "";@Watch("keywordSubordinate")onkeywordSubordinateChanged(newVal: string, oldVal: string) {if (!newVal || newVal === "") {   //当输入框为空时this.querySubordinateList();}}private querySubordinateList() {}

 

  相关解决方案