1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-04-30 22:29:01 +08:00

fix: keydown.enter事件

This commit is contained in:
zclzone 2023-12-08 13:19:02 +08:00
parent b8c7f56ede
commit bdca8af282
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
type="text"
placeholder="请输入角色名"
clearable
@keydown.enter="$table?.handleSearch"
@keydown.enter="() => $table?.handleSearch()"
/>
</MeQueryItem>
<MeQueryItem label="状态" :label-width="50">

View File

@ -43,7 +43,7 @@
type="text"
placeholder="请输入用户名"
clearable
@keydown.enter="$table?.handleSearch"
@keydown.enter="() => $table?.handleSearch"
/>
</MeQueryItem>

View File

@ -28,7 +28,7 @@
type="text"
placeholder="请输入用户名"
clearable
@keydown.enter="$table?.handleSearch"
@keydown.enter="() => $table?.handleSearch"
/>
</MeQueryItem>