[Vuejs]-Vuetify Carousel syncing with route params

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)
},

Leave a comment