Why there's no q-row and q-col components in Quasar?
-
Are there were some pitfalls or problems?
-
Different philosphy. You talking about declarative code but q-table is more imperative, you need to specifically tell the framework what you want. It is better suited for data-bound apps (api, slots, ect.) than visual representation (static html struct, clean hierarchies), as you can see. There’s no problem to build another suite of components highly declarative only for presentation. In fact, in quasar you can use declarative css table classes in “normal” html table code (table, td, tr, th etc.) and it will look very similar to q-table.
-
Why don’t you use q-markup-table instead?