Skip to content

Commit

Permalink
suppress some demo prop warning
Browse files Browse the repository at this point in the history
  • Loading branch information
smastrom committed Jun 27, 2024
1 parent a414978 commit 209e47d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playground/components/AdvancedControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Collapse } from 'vue-collapsed'
// Used for demo purposes only...
const props = withDefaults(
defineProps<{
initialState: boolean
initialState?: boolean
}>(),
{ initialState: true }
)
Expand Down
2 changes: 1 addition & 1 deletion playground/components/DisplayHide.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Collapse } from 'vue-collapsed'
const props = withDefaults(
defineProps<{
initialState: boolean
initialState?: boolean
}>(),
{ initialState: true }
)
Expand Down
2 changes: 1 addition & 1 deletion playground/components/MountUnmount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Collapse } from 'vue-collapsed'
const props = withDefaults(
defineProps<{
initialState: boolean
initialState?: boolean
}>(),
{ initialState: true }
)
Expand Down

0 comments on commit 209e47d

Please sign in to comment.