2024-07-11 14:30:32 +02:00
|
|
|
<template>
|
|
|
|
|
<h1>{{ data.content.title }}</h1>
|
|
|
|
|
<!-- ... -->
|
|
|
|
|
</template>
|
2024-09-04 11:43:06 +02:00
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
2024-07-11 14:30:32 +02:00
|
|
|
<script setup>
|
|
|
|
|
const { data } = defineProps({
|
|
|
|
|
data: Object,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ....
|
|
|
|
|
</script>
|