Hello all,
I’m migrating all my apps from v0.17.* to the latest version of Quasar and all runs fine.
The problem is the new way to use filter functions for QSelects: before, I could to use the same method to filter all qselects values, through the :filter prop ( like this: https://codepen.io/diegomagikal/pen/QoadEV).
But now (in V1), with @filter is necessary modify an object previously defined (https://codepen.io/diegomagikal/pen/NJXjRd) to do the same (in this example, the stringOptions const).
So I’ll have to create a separate object with filterable options for each qselect on my page. Is there any way around this? Thanks in advance.