fix
This commit is contained in:
parent
9b316c3ee7
commit
6f2036565b
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ export default defineComponent({
|
||||||
|
|
||||||
setup(props) {
|
setup(props) {
|
||||||
const showMenu = ref(false);
|
const showMenu = ref(false);
|
||||||
const showAds = ref<boolean>(defaultStore.state.showAds);
|
const showAds = defaultStore.state.showAds;
|
||||||
const toggleMenu = () => {
|
const toggleMenu = () => {
|
||||||
showMenu.value = !showMenu.value;
|
showMenu.value = !showMenu.value;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue