designtopack/src/views/Example.vue

13 lines
240 B
Vue
Raw Normal View History

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