Add inspirations blueprints, template and views

This commit is contained in:
Timothée Goguely 2024-09-04 11:41:37 +02:00
parent d1c108a2d6
commit 1183905251
7 changed files with 107 additions and 1 deletions

View file

@ -6,9 +6,10 @@
import { useApiStore } from "./stores/api";
import { ref } from "vue";
import home from "./views/Home.vue";
import inspirations from "./views/Inspirations.vue";
const components = {
home,
home, inspirations
};
const data = ref(null);

View file

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