组件Vue:
<template>
<img src="../../images/logo-icon.svg">
路径:/resources/js/components/header.vue
图片: 路径:/resources/assets/images/logo-icon.svg
记录错误:
答案 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">