b2nil / taro-ui-vue3

采用 Vue 3.0 重写的 Taro UI 组件库
https://b2nil.github.io/taro-ui-vue3/
MIT License
160 stars 51 forks source link

[H5] AtSearchBar 点击搜索按钮后,不能彻底清空搜索内容 #41

Closed b2nil closed 3 years ago

b2nil commented 3 years ago

问题描述

通过 onActionClick 重置 AtSearchBarvalue,不能将视图层节点的 value 彻底清除。

版本信息

v1.0.0-alpha.8

涉及的平台

h5

代码

// template
<at-search-bar
   placeholder="跳转到指定Key"
   :value="searchbarValue"
   @change="handleChange"
   @action-click="handleActionClick"
/>

// script
const searchbarValue = ref('')

function handleActionClick() {
  searchbarValue.value = ''
}