refactor: data fetching for page navigation
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m1s

This commit is contained in:
2025-09-17 08:50:19 -04:00
parent 346890c088
commit 7bcabc20db
2 changed files with 15 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
const { node, component, breadcrumbs } = await useNodeByUri();
const { path } = useRoute();
const { node, component, breadcrumbs } = await useNodeByUri(path);
useSeoMeta({ title: node?.title });
</script>