0👍
I think i found the problem, you write:
data(){
return {
imageSelectedUrl:null
},
you missed }
.
Try to write:
data () {
return {
imageSelectedUrl: null
}
},
- [Vuejs]-ASP .net core endpoint configuration
- [Vuejs]-How do I do an on-click method on a button that directs to another component?
Source:stackexchange.com