All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m42s
16 lines
419 B
Vue
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>
|