[Vuejs]-Binding img src

2👍

When attaching to bindings, this isn’t needed and if I’m remembering right can cause issues like this.

Also your store structure looks like you have a module imageStore this would namepace of the imageDataURI element.

Try:

<img :src="$store.state.imageStore.imageDataURI">

Leave a comment