designtopack/src/views/Example.vue

17 lines
188 B
Vue
Raw Normal View History

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