13 lines
No EOL
288 B
Vue
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> |