File tree 3 files changed +3
-3
lines changed
docs/.vuepress/components
plugins/pwa/plugin-pwa/src/client/components
themes/theme-default/src/client/components
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const props = defineProps<{
13
13
14
14
const { config } = toRefs (props )
15
15
16
- const [open, toggleOpen] = useToggle (false )
16
+ const [open, toggleOpen] = useToggle ()
17
17
18
18
const dropdownAriaLabel = computed (
19
19
() => config .value .ariaLabel || config .value .text ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const PwaInstall = defineComponent({
31
31
32
32
setup ( props ) {
33
33
const locale = useLocaleConfig ( props . locales )
34
- const [ isOpen , toggleIsOpen ] = useToggle ( false )
34
+ const [ isOpen , toggleIsOpen ] = useToggle ( )
35
35
36
36
const canInstall = ref ( false )
37
37
const hasRelatedApps = ref ( false )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const props = defineProps<{
13
13
14
14
const { config } = toRefs (props )
15
15
16
- const [open, toggleOpen] = useToggle (false )
16
+ const [open, toggleOpen] = useToggle ()
17
17
18
18
const dropdownAriaLabel = computed (
19
19
() => config .value .ariaLabel || config .value .text ,
You can’t perform that action at this time.
0 commit comments