Kael
Kael
Yeah that'll sort the groups by the grouped value (sport name in alphabetical order), there's no way to sort by count or some other aggregate though. With no defined order...
packages/vuetify/src/labs/VDataTable/composables/group.ts I'd probably do it on headers actually, something like this maybe? ```js { title: 'Active Players', key: 'active', align: 'end', aggregate: ({ group }) => group.items.reduce((a, v) => v.raw.active...
I've updated the examples. How is everyone here using it? What it was doing in the documentation has been superseded by `on-*` colors in the new theme system.
activePicker is now called viewMode and is not related to this issue.
https://github.com/vuejs/core/pull/6484
VList also provides it: https://github.com/vuetifyjs/vuetify/blob/87de862e11badbb8ab2b1f49ac67cd76db2837d3/packages/vuetify/src/components/VList/VList.tsx#L153-L154 Should defaults skip `undefined` like vue does?
How are you getting typescript warnings in vue templates without volar
It works correctly for me with VSCode + Volar 1.6.5, VSCode + Volar 1.8.5, and PHPStorm + Volar 1.6.5. Jetbrains' homegrown typescript integration doesn't work with TS 5 so I...
Looking at a few other libraries, they either have the same problem (quasar), or limit the menu width to the same as the input (virtual-select-plugin, material-ui, element-plus, angular/material). You can...