I am seeing new behavior in vuejs when trying to set the img src in a vue component.
The img src keeps getting set to something that looks like my publicPath (app/mm/dist/dev). This project is using vuetify; but I don't see how vuetify would get involved in a straight <img> tag.
My template looks like this:
<img id="activity" :src="asyncImg" class="async-img" />
In the script block I am doing this:
data: function() {
return {
asyncImg: require("@/assets/async.gif")
};
},
And what I am getting is this:
<img data-v-2a5cd2eb=""
id="activity"
src="/app/mm/distdevasync.gif?817596d6626736251eea50f61b9492a4"
class="async-img">