Files
web_server/nginx/vue/src/views/home/Miku.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

14 lines
303 B
Vue

<script setup>
import Slideshow from "@/components/util/Slideshow.vue";
const images = [
{ url: "/img/miku/miku1.gif" },
{ url: "/img/miku/miku2.gif" },
// { url: "/img/miku/miku2.png" },
];
</script>
<template>
<Slideshow class="p-5" :images="images" :interval="10000" />
</template>