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