[Vuejs]-Vue3 and Vue-Router cannot access the parameters with the $route object in production but can in dev

0👍

Figured out myself what was wrong with the whole stuff,

fitst I was using this.myObj in some component’s template which = bad, remove the this, sadly Vue doesn’t warn you about that.

Secondly I remade my inputs because using v-model with them does’t worked in prod for a mysterious reason, so now it use $event.target.value on v-on:input

Leave a comment