Login to bookmark this video
Buy Access to Course
09.

v-bind: Dynamic Attributes

Share this awesome video!

|

Keep on Learning!

3 Comments

Sort By
Login or Register to join the conversation

Nice tutorial again! How can i add a static image to a template in vue? I tried a few options, one is :src="'/static/img/clear.gif'". But no succes.

| Reply |

Hey lexhartman!

Excellent question! There are 2 things to know.

1) In theory, it should be this simple:


<img src="../../images/loading.gif" />

Where you literally just use the relative path to the image file. So in this example, my loading.gif is "up" 2 directories, then inside an images/ directory (relative to the component where I wrote this code).

2) But... there's a pretty good chance that when you try this, you will end up with src="[object Module]". This is due to some internal options in Encore... it's confusing - here is some info on it https://github.com/vuejs/vue-loader/issues/1612

The best way to fix this is to make it dynamic:


<img :src="loadingImgPath" />

Then in your component:


import loadingImgPath from '../../images/loading.gif';

export default {
    // ...

    computed: {
        loadingImgPath() {
            return loadingImgPath;
        }
    }
}

That's it! A bit of an annoying extra step, due to how file-loader and the Vue compiler aren't playing nicely together, but it should get you what you need :).

Cheers!

| Reply |

The first solution indeed ended up with src="[object Module]". After making it dynamic it worked. So thanks!

| Reply |

Delete comment?

Share this comment

astronaut with balloons in space

"Houston: no signs of life"
Start the conversation!