0๐
โ
I figured it out. I had to convert the route param to Number
. So instead of the getter
get(){
return this.$route.params.id
},
I should have used
get(){
return Number(this.$route.params.id)
},
Source:stackexchange.com