How to import and use image in a Vue single file component? How to import and use image in a Vue single file component? vue.js vue.js

How to import and use image in a Vue single file component?


As simple as:

<template>    <div id="app">        <img src="./assets/logo.png">    </div></template>    <script>    export default {    }</script>    <style lang="css"></style> 

Taken from the project generated by vue cli.

If you want to use your image as a module, do not forget to bind data to your Vuejs component:

<template>    <div id="app">        <img :src="image"/>    </div></template>    <script>    import image from "./assets/logo.png"        export default {        data: function () {            return {                image: image            }        }    }</script>    <style lang="css"></style>

And a shorter version:

<template>    <div id="app">        <img :src="require('./assets/logo.png')"/>    </div></template>    <script>    export default {    }</script>    <style lang="css"></style> 


It is heavily suggested to make use of webpack when importing pictures from assets and in general for optimisation and pathing purposes

If you wish to load them by webpack you can simply use :src='require('path/to/file')' Make sure you use : otherwise it won't execute the require statement as Javascript.

In typescript you can do almost the exact same operation: :src="require('@/assets/image.png')"

Why the following is generally considered bad practice:

<template>  <div id="app">    <img src="./assets/logo.png">  </div></template><script>export default {}</script><style lang="scss"></style> 

When building using the Vue cli, webpack is not able to ensure that the assets file will maintain a structure that follows the relative importing. This is due to webpack trying to optimize and chunk items appearing inside of the assets folder. If you wish to use a relative import you should do so from within the static folder and use: <img src="./static/logo.png">


I came across this issue recently, and i'm using Typescript.If you're using Typescript like I am, then you need to import assets like so:

<img src="@/assets/images/logo.png" alt="">