designtopack/src/views/Example.vue

16 lines
188 B
Vue

<template>
<h1>{{ data.content.title }}</h1>
<!-- ... -->
</template>
<style scoped>
</style>
<script setup>
const { data } = defineProps({
data: Object,
});
// ....
</script>