chore(CommandPalette): add autoclear prop

This commit is contained in:
Benjamin Canac
2022-11-08 16:43:18 +01:00
parent 24998e3ac5
commit 23e5f4c501

View File

@@ -110,6 +110,10 @@ const props = defineProps({
type: Boolean,
default: true
},
autoclear: {
type: Boolean,
default: true
},
placeholder: {
type: Boolean,
default: true
@@ -183,7 +187,7 @@ function onSelect (option: Command | Command[]) {
emit('update:modelValue', option, { query: query.value })
// Clear input after selection
if (!props.multiple) {
if (props.autoclear) {
setTimeout(() => {
query.value = ''
}, 0)