refactor: get random image from api

This commit is contained in:
Pihkaal
2024-10-17 20:00:06 +02:00
parent 0bde85fd8f
commit 203985915c
3 changed files with 17 additions and 13 deletions

View File

@@ -1,12 +0,0 @@
<script setup lang="ts">
import { resolve } from "path";
import { readdir } from "fs/promises";
const images = await readdir(resolve("public", "lilou"));
const image = images[Math.floor(Math.random() * images.length)];
const imagePath = `/lilou/${image}`;
</script>
<template>
<img class="w-full max-w-[50vh]" :src="imagePath" alt="Lilou" >
</template>