16 lines
282 B
Vue
16 lines
282 B
Vue
<template>
|
|
<div>
|
|
<img v-if="active" src="./images/my1.png" alt="" class="w-[18px] h-[20px]">
|
|
<img v-else src="./images/my2.png" alt="" class="w-[18px] h-[20px]">
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
active: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
</script>
|