Laravel-mix在vue组件中看不到连接的图片

问题描述 投票:1回答:1

组件视图:

<template>
  <img src="../../images/logo-icon.svg">

路径:/resources/js/components/header.vue

图片:路径:/resources/assets/images/logo-icon.svg

记录错误:

enter image description here

laravel vue.js webpack laravel-mix
1个回答
0
投票

https://vuejs.org/v2/guide/syntax.html#Attributes

<template>
  <img :src="../../images/logo-icon.svg">

要么

<template>
  <img v-bind:src="../../images/logo-icon.svg">
© www.soinside.com 2019 - 2024. All rights reserved.