28 lines
No EOL
463 B
Vue
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> |