【问题标题】:Laravel-mix does not see the connected picture in <img src=""> in vue componentslaravel-mix在vue组件中看不到<img src="">中的连接图
【发布时间】:2019-08-03 22:37:34
【问题描述】:

组件 Vue:

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

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

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

日志错误:

enter image description here

【问题讨论】:

  • 试试&lt;img src="../../assets/images/logo-icon.svg"&gt;我发现你错过了assets
  • Tnx 你!!!!!!你的决定帮助了我!非常感谢!

标签: laravel vue.js webpack laravel-mix


【解决方案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">

【讨论】:

  • Boussadjra Brahim 提示了正确的解决方案! Tnx y!
猜你喜欢
  • 2017-11-07
  • 2020-03-09
  • 2021-04-23
  • 2018-03-31
  • 2020-07-13
  • 2019-02-13
  • 2023-03-03
  • 1970-01-01
  • 2021-02-12
相关资源
最近更新 更多