Hello
I have stored some images on my local storage I need to used them in a table
currently "item.logoUrl" is a link to a website where this image is, but I have those images in my local storage. How do I point the img tag to use the images from my local storage they are in /data/logos
<template v-slot:item.direction="{ item }">
<div class="container">
<img :src="item.logoUrl" :alt="logo" />
</div>
</template>