1👍
Your xValues
and yValues
are being turned into strings from the dialogues.
Turn them back into nums by adding this to the top of your train()
method
this.xValues = this.xValues.map(value=>{return parseInt(value)});
this.yValues = this.yValues.map(value=>{return parseInt(value)});
👤Abe
- [Vuejs]-Css is being ignored by browser and devtools
- [Vuejs]-Nuxt.js page reloading on for submission even with stop.prevent
Source:stackexchange.com