Load Laravel Storage images with Vue

Asked

Viewed 8 times

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''] }

insert the description consoleinserir a descrição da imagem aqui
image here

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.