generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m1s
15 lines
333 B
Vue
15 lines
333 B
Vue
<script setup lang="ts">
|
|
const { path } = useRoute();
|
|
const { node, component, breadcrumbs } = await useNodeByUri(path);
|
|
useSeoMeta({ title: node?.title });
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UContainer>
|
|
<UBreadcrumb :items="breadcrumbs" />
|
|
</UContainer>
|
|
<component :is="component" :node="node" />
|
|
</div>
|
|
</template>
|