app.vue 215 B

1234567891011121314151617
  1. <template>
  2. <div id="top" />
  3. <LayoutNavigation />
  4. <nuxt-page />
  5. <LayoutFooter />
  6. </template>
  7. <script setup lang="ts">
  8. const layoutStore = useLayoutStore()
  9. layoutStore.resetAnchoredSections()
  10. </script>