banii.cafe/src/components/stamps.vue
2025-04-12 22:49:34 +01:00

28 lines
No EOL
463 B
Vue

<template>
<div>
<h2>stampbook</h2>
<div id="stamp">
<img v-for="(item, path) in stamps" :src="path" />
</div>
</div>
</template>
<script setup lang="ts">
const stamps = import.meta.glob("@/assets/images/stamps/*")
</script>
<style scoped>
h2 {
margin: 0;
text-align: center;
}
img {
height: 56px;
width: 99px;
}
#stamp {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
</style>