[Vuejs]-Vue image Src binding not showing

0👍

I think i found the problem, you write:

data(){
   return {
       imageSelectedUrl:null
   },

you missed }.
Try to write:

data () {
        return {
            imageSelectedUrl: null
        }
    },

Leave a comment