mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 07:21:46 +01:00
feat(Dropdown): default delay from config
This commit is contained in:
@@ -108,11 +108,11 @@ export default defineComponent({
|
||||
},
|
||||
openDelay: {
|
||||
type: Number,
|
||||
default: 0
|
||||
default: () => config.default.openDelay
|
||||
},
|
||||
closeDelay: {
|
||||
type: Number,
|
||||
default: 0
|
||||
default: () => config.default.closeDelay
|
||||
},
|
||||
class: {
|
||||
type: [String, Object, Array] as PropType<any>,
|
||||
|
||||
Reference in New Issue
Block a user