12 lines
185 B
Vue
12 lines
185 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
variant: Object,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<figure class="image is-32x32">
|
|
<img :src="variant.image__path" />
|
|
</figure>
|
|
</template>
|