0
I’m trying to upload an image that is in Storage Storage public app images of my project Readable with a Vue component that I’m using as monolith within the code but not loading
<template>
#
First
Last
</tr>
</thead>
<tbody>
<tr v-for="m in dados" :key="m.id">
<th scope="row">{{m.id}}</th>
<td>{{m.nome}}</td>
<td><img :src="'/storage/'+m.imagem"></td>
</tr>
</tbody>
</table>
export default {
props: ['data'']
}