designtopack/src/views/Example.vue

12 lines
159 B
Vue
Raw Normal View History

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