jankincl
jankincl
I seem to have the same issue with bs-input, when I have the variable which is synced with Integer value, I get this error. `vue-strap.min.js:3 Uncaught TypeError: (this.value || "").trim...
I found a solution - in the Input.vue source file, I added type String and coerce string for the Value prop. ``` value: { twoWay: true, type: String, coerce: coerce.string,...
Thanks for the answer. I am loading the numbers from a database to an object which is binded with the input components. That's why it seemed more logical to "convert"...