fix: title of search button in vxeTable toolbar (#6046)

* 修改vxeTable工具栏里的搜索按钮的提示文案
This commit is contained in:
Netfan
2025-04-26 01:08:41 +08:00
committed by GitHub
parent be840460d8
commit 0a9fc4e02d
3 changed files with 9 additions and 3 deletions

View File

@@ -148,7 +148,9 @@ const toolbarOptions = computed(() => {
icon: 'vxe-icon-search',
circle: true,
status: showSearchForm.value ? 'primary' : undefined,
title: $t('common.search'),
title: showSearchForm.value
? $t('common.hideSearchPanel')
: $t('common.showSearchPanel'),
};
// 将搜索按钮合并到用户配置的toolbarConfig.tools中
const toolbarConfig: VxeGridPropTypes.ToolbarConfig = {