[Vuejs]-What comparator does Vuetify use to sort data table String columns

0👍

I think it might be this

https://github.com/vuetifyjs/vuetify/blob/268434aa851dded8b67c0e67bfa39b3cbe791584/packages/vuetify/src/util/helpers.ts#L285

Though I am not sure how to reference the sortItems method directly. When I add

import { sortItems } from "vuetify/src/util/helpers";

I get an error “Can’t resolve ‘vuetify/src/util/helpers'”.

0👍

@hobbes_child comment
I change to import from lib is resolved

import { sortItems } from "vuetify/lib/util/helpers";

Leave a comment