app.vue 238 B

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