| 123456789101112131415161718192021 |
- <template>
- <div id="top" />
- <LayoutNavigation />
- <nuxt-page />
- <LayoutFooter />
- </template>
- <script setup lang="ts">
- import { useDisplay } from "vuetify";
- const { mdAndDown } = useDisplay()
- const layoutStore = useLayoutStore()
- layoutStore.resetAnchoredSections()
- </script>
|