moment/src/qml/Models/Accounts.qml
2019-07-04 16:01:44 -04:00

11 lines
194 B
QML

import QtQuick 2.7
import SortFilterProxyModel 0.2
import "../Base"
HListModel {
sorters: StringSorter {
roleName: "userId"
numericMode: true // human numeric sort
}
}