2024-07-11 14:30:32 +02:00
|
|
|
<template>
|
2024-09-17 18:11:42 +02:00
|
|
|
<h1>{{ page.content.title }}</h1>
|
2024-07-11 14:30:32 +02:00
|
|
|
</template>
|
2024-09-04 11:43:06 +02:00
|
|
|
|
2024-07-11 14:30:32 +02:00
|
|
|
<script setup>
|
2024-09-17 18:11:42 +02:00
|
|
|
import { usePageStore } from "../stores/page";
|
|
|
|
|
import { storeToRefs } from "pinia";
|
2024-07-11 14:30:32 +02:00
|
|
|
|
2024-09-17 18:11:42 +02:00
|
|
|
const { page } = storeToRefs(usePageStore());
|
2024-07-11 14:30:32 +02:00
|
|
|
</script>
|
2024-09-17 18:11:42 +02:00
|
|
|
|
|
|
|
|
<style scoped></style>
|