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 feeling_1 from "@/assets/images/collectionStory/feeling_1.png";
import feeling_2 from "@/assets/images/collectionStory/feeling_2.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: 'Web interface in AiDA - the process of apparel edit' },
{ image: img, text: 'Web interface in AiDA-Sketchboard' },
{ image: feeling_1, text: 'Web interface in AiDA - the process of apparel edit' },
{ image: feeling_2, text: 'Web interface in AiDA-Sketchboard' },
]
onMounted(()=>{
})