designtopack/src/views/Example.vue
2024-09-17 18:11:52 +02:00

12 lines
240 B
Vue

<template>
<h1>{{ page.content.title }}</h1>
</template>
<script setup>
import { usePageStore } from "../stores/page";
import { storeToRefs } from "pinia";
const { page } = storeToRefs(usePageStore());
</script>
<style scoped></style>