fix: missing required prop BackgroundColor
This commit is contained in:
parent
341b8d2045
commit
47143af9d1
@ -41,10 +41,11 @@ const props = withDefaults(defineProps<{
|
|||||||
initialHeight?: number
|
initialHeight?: number
|
||||||
/** The hidden content is indicated by a gradient. This is the color that the gradient fades to.
|
/** The hidden content is indicated by a gradient. This is the color that the gradient fades to.
|
||||||
* Makes only sense if `initialHeight` is set. */
|
* Makes only sense if `initialHeight` is set. */
|
||||||
backgroundColor: string
|
backgroundColor?: string
|
||||||
}>(), {
|
}>(), {
|
||||||
open: false,
|
open: false,
|
||||||
initialHeight: undefined,
|
initialHeight: undefined,
|
||||||
|
backgroundColor: undefined,
|
||||||
})
|
})
|
||||||
|
|
||||||
const wrapper = ref<HTMLElement | null>(null)
|
const wrapper = ref<HTMLElement | null>(null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user