Add inspirations blueprints, template and views
This commit is contained in:
parent
d1c108a2d6
commit
1183905251
7 changed files with 107 additions and 1 deletions
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