12 lines
240 B
Vue
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>
|