Files
web_server/nginx/vue/src/views/home/Collage.vue
Adam French aa3f0a189d
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m42s
refactor slideshow code to its component and added Miku & miku background
2026-03-05 13:31:28 +00:00

16 lines
419 B
Vue

<script setup>
import Slideshow from "@/components/util/Slideshow.vue";
const images = [
{ url: "/img/memes/pidgeon.gif", comment: "鸟" },
// { url: "/img/memes/no_slip.png" },
// { url: "/img/memes/epic.jpeg" },
// { url: "/img/bedroom/img2.png", comment: "办公桌" },
// { url: "/img/bedroom/img1.png", comment: "床" },
];
</script>
<template>
<Slideshow :images="images" />
</template>