designtopack/src/views/Home.vue

9 lines
135 B
Vue
Raw Normal View History

2024-07-11 12:42:29 +02:00
<template>
<h1>{{ data.content.title }}</h1>
</template>
<script setup>
const { data } = defineProps({
data: Object,
});
</script>