level-up/frontend/components/ObjectPicture.vue
Moritz Ruth 88f0632194
All checks were successful
Build / build (push) Successful in 1m14s
Update dependencies, containerize, add build workflow
2025-03-03 00:35:21 +01:00

13 lines
No EOL
288 B
Vue

<template>
<img :src="`/objects/${objectId}.png`" alt="" class="invert filter object-contain max-w-15 pointer-events-none" draggable="false"/>
</template>
<style module lang="scss">
</style>
<script setup lang="ts">
const props = defineProps<{
objectId: string
}>()
</script>