Add inspirations blueprints, template and views
This commit is contained in:
parent
d1c108a2d6
commit
1183905251
7 changed files with 107 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
16
src/views/Inspirations.vue
Normal file
16
src/views/Inspirations.vue
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<template>
|
||||
<h1>{{ data.content.title }}</h1>
|
||||
<!-- ... -->
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
||||
<script setup>
|
||||
const { data } = defineProps({
|
||||
data: Object,
|
||||
});
|
||||
|
||||
// ....
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue