designtopack/src/views/Inspirations.vue

23 lines
385 B
Vue
Raw Normal View History

<template>
<h1 class="sr-only">{{ data.content.title }}</h1>
<div class="with-sidebar">
2024-09-10 08:49:09 +02:00
<Menu />
<main>
<Inspirations />
</main>
</div>
</template>
<script setup>
import Menu from "../components/Menu.vue";
import Inspirations from "../components/Inspirations.vue";
const { data } = defineProps({
data: Object,
});
// ....
</script>
2024-09-10 08:49:09 +02:00
<style scoped></style>