forked from FoundKeyGang/FoundKey
client: mark properties with defaults as optional
This commit is contained in:
parent
06e40246db
commit
36a0f0c480
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
defaultOpen: boolean;
|
defaultOpen?: boolean;
|
||||||
}>(), {
|
}>(), {
|
||||||
defaultOpen: false,
|
defaultOpen: false,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue