fix: product service card fallback image

This commit is contained in:
puriphatt 2024-08-14 17:21:52 +07:00
parent 68038c5a09
commit cb06e3d8c3

View file

@ -200,12 +200,14 @@ withDefaults(
}" }"
> >
<q-img <q-img
ratio="1"
:src=" :src="
data?.type === 'product' data?.type === 'product'
? '/shop-image.png' ? '/images/product-avatar.png'
: '/service-image.png' : '/images/service-avatar.png'
" "
width="5rem" width="10rem"
style="bottom: 9%"
/> />
</div> </div>
</template> </template>