app.vue 435 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div>
  3. <Html :lang="i18nHead.htmlAttrs.lang" :dir="i18nHead.htmlAttrs.dir"></Html>
  4. <div id="top" />
  5. <LayoutNavigation />
  6. <nuxt-page />
  7. <LayoutFooter />
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. const layoutStore = useLayoutStore()
  12. layoutStore.resetAnchoredSections()
  13. const i18nHead = useLocaleHead({
  14. addDirAttribute: true,
  15. identifierAttribute: 'id',
  16. addSeoAttributes: true
  17. })
  18. </script>