Laravel-mix在vue组件中看不到<img src=""/>中的连接图片

时间:2019-03-13 09:45:32

标签: laravel vue.js webpack laravel-mix

组件Vue:

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

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

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

记录错误:

enter image description here

1 个答案:

答案 0 :(得分:1)

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

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

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