fix(ui): 修复知识库页面搜索栏输入时高度变化
为 SearchBar 组件添加 variant='rounded' 属性,统一知识库页面 与搜索页面的搜索栏高度表现 影响文件: - src/pages/knowledge-base/index.vue
Showing
1 changed file
with
1 additions
and
0 deletions
| ... | @@ -12,6 +12,7 @@ | ... | @@ -12,6 +12,7 @@ |
| 12 | <SearchBar | 12 | <SearchBar |
| 13 | v-model="searchValue" | 13 | v-model="searchValue" |
| 14 | placeholder="搜索产品名称..." | 14 | placeholder="搜索产品名称..." |
| 15 | + variant="rounded" | ||
| 15 | :show-clear="true" | 16 | :show-clear="true" |
| 16 | @search="onSearch" | 17 | @search="onSearch" |
| 17 | @input="onSearchInput" | 18 | @input="onSearchInput" | ... | ... |
-
Please register or login to post a comment