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
Source:stackexchange.com