Possible to use CSS-classes only for style, but no components?
-
I’ve got a list of about 1000 inputs (and other components) that I want to display. I want to display them all at the same time to make it quick for the user to move between them with the keyboard.
If I’m using qinput the performance takes a hit (about 6 times slower, which is very noticeable) so instead I’d like to use just the native input-box and style it using Quasar’s material CSS-classes. Is this possible somehow?
Here is an example of what I mean with the performance: https://codepen.io/Gnopps/pen/ZgJLqZ?editors=1010
-
I suggest using a vue recycler view or infinite list of some sort. Wrap your qinput inside it if possible.