pull/5161/head
mertsincan 2024-01-24 11:26:29 +00:00
parent 2501fc91b7
commit 321a3e87e1
2 changed files with 4 additions and 4 deletions

View File

@ -132,11 +132,11 @@ export default {
},
highlightOnSelect: {
type: Boolean,
default: false
default: true
},
showTick: {
type: Boolean,
default: true
default: false
},
filterMessage: {
type: String,

View File

@ -436,12 +436,12 @@ export interface DropdownProps {
focusOnHover?: boolean | undefined;
/**
* Whether the selected option will be add highlight class.
* @defaultValue false
* @defaultValue true
*/
highlightOnSelect?: boolean | undefined;
/**
* Whether the selected option will be shown with a tick.
* @defaultValue true
* @defaultValue false
*/
showTick?: boolean | undefined;
/**