designtopack/src/views/Home.vue

13 lines
197 B
Vue
Raw Normal View History

2024-07-11 12:42:29 +02:00
<template>
<h1>{{ data.content.title }}</h1>
</template>
<script setup>
2024-09-02 14:33:21 +02:00
import Btn from "../components/Btn.vue";
2024-07-11 12:42:29 +02:00
const { data } = defineProps({
data: Object,
});
2024-09-02 14:33:21 +02:00
console.log(data);
2024-07-11 12:42:29 +02:00
</script>