fix: add missing disabled prop
This commit is contained in:
parent
f2a0ae108c
commit
ed0ef385e9
@ -45,6 +45,7 @@ export interface ButtonProps extends /* @vue-ignore */ BaseButtonProps {
|
|||||||
icon?: IconProp
|
icon?: IconProp
|
||||||
iconColor?: string
|
iconColor?: string
|
||||||
loading?: boolean
|
loading?: boolean
|
||||||
|
disabled?: boolean
|
||||||
shadow?: boolean
|
shadow?: boolean
|
||||||
wrap?: boolean
|
wrap?: boolean
|
||||||
}
|
}
|
||||||
@ -54,6 +55,7 @@ const props = withDefaults(defineProps<ButtonProps>(), {
|
|||||||
icon: undefined,
|
icon: undefined,
|
||||||
iconColor: undefined,
|
iconColor: undefined,
|
||||||
loading: false,
|
loading: false,
|
||||||
|
disabled: false,
|
||||||
shadow: true,
|
shadow: true,
|
||||||
wrap: true,
|
wrap: true,
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user