CN-1479 fix: 搜索组件添加showHint自动完成提示

This commit is contained in:
刘洪洪
2023-12-07 10:03:31 +08:00
parent 5106f23c2b
commit 8cd3f87c3e
33 changed files with 8954 additions and 89 deletions

View File

@@ -10,6 +10,7 @@
:column-list="columnList"
:str="str"
:show-list="showList"
:is-show-hint="showHint"
@changeMode="changeMode"
@search="search"
:show-close-icon="showCloseIcon"
@@ -64,7 +65,11 @@ export default {
required: true
},
// 连接符列表
connectionList: Array
connectionList: Array,
showHint: {
type: Boolean,
default: false
}
},
emits: ['search'],
methods: {