blob: c09973506bb110d90f032fb1176305593101b607 [file] [log] [blame]
const STATUS = ['OK', 'Warning', 'Critical'];
const TableSortMixin = {
methods: {
sortStatus(a, b, key) {
return STATUS.indexOf(a[key]) - STATUS.indexOf(b[key]);
},
},
};
export default TableSortMixin;