This commit is contained in:
X1627315083@163.com
2026-04-21 15:57:37 +08:00
parent 14b8ead78f
commit 282a5b2252
27 changed files with 595 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import img from "@/assets/images/collectionStory/Rectangle.png";
import inspiration_1 from "@/assets/images/collectionStory/inspiration_1.png";
import inspiration_2 from "@/assets/images/collectionStory/inspiration_1.png";
//const props = defineProps({
//})
//const emit = defineEmits([
@@ -8,8 +9,8 @@ import img from "@/assets/images/collectionStory/Rectangle.png";
let data = reactive({
})
let slides = [
{ image: img, text: 'Moodboard 1 for this Collection' },
{ image: img, text: 'Moodboard 2 for this Collection' },
{ image: inspiration_1, text: 'Moodboard 1 for this Collection' },
{ image: inspiration_2, text: 'Moodboard 2 for this Collection' },
]
onMounted(()=>{
})