Browse Source

feat: add sortable for totalBIS and tokenHM column on BisList

master
Shalma 1 year ago
parent
commit
e1ccb4bb5f
  1. 4
      src/components/BisList.vue

4
src/components/BisList.vue

@ -26,8 +26,8 @@ const headers = [
{ key: 'arme', value: 'data.arme', title: 'Arme', align: 'center' }, { key: 'arme', value: 'data.arme', title: 'Arme', align: 'center' },
{ key: 'mainGauche', value: 'data.mainGauche', title: 'Main Gauche', align: 'center' }, { key: 'mainGauche', value: 'data.mainGauche', title: 'Main Gauche', align: 'center' },
{ key: 'relique', value: 'data.relique', title: 'Relique / Distance', align: 'center' }, { key: 'relique', value: 'data.relique', title: 'Relique / Distance', align: 'center' },
{ value: 'totalBIS', title: 'Total BIS', align: 'center' }, { value: 'totalBIS', title: 'Total BIS', align: 'center', sortable: true },
{ value: 'tokenHM', title: 'Tokens HM', align: 'center' } { value: 'tokenHM', title: 'Tokens HM', align: 'center', sortable: true }
] ]
onMounted(async () => { onMounted(async () => {

Loading…
Cancel
Save