Skip to content

Releases: HC200ok/vue3-easy-data-table

v 1.2.19

27 Jun 09:46
9d231b3
Compare
Choose a tag to compare

Fix extra rows when using single field sorting feature

v 1.2.18

26 Jun 00:42
2a66669
Compare
Choose a tag to compare

Fix empty message background color.

v 1.2.17

25 Jun 02:09
bec041e
Compare
Choose a tag to compare

Fix table hover color

v 1.2.16

24 Jun 12:58
1bf9de6
Compare
Choose a tag to compare

Optimize:

  1. update show-footer prop to hide-footer

v 1.2.15

23 Jun 11:45
138eae1
Compare
Choose a tag to compare

Fix column width bug in safari when using fixed-columns feature

v 1.2.11

23 Jun 06:05
cadd882
Compare
Choose a tag to compare

v 1.2.9

18 Jun 14:16
f271b5e
Compare
Choose a tag to compare

Fix current pagination not work in server-side mode

v 1.2.8

18 Jun 07:11
79dfe03
Compare
Choose a tag to compare

Feature:

  1. support nested value in item and header value with '.' character.
    e.g.
// before:
const headers: Header[] = [
    { text: 'Name', value: 'name' },
    { text: 'Height', value: 'height' },
    { text: 'Weight', value: 'weight' },
    ...
];

const items: Item[] = [
  { name: 'AA', height: '6-2', weight: 185 }
 ...        
];

// after:
const headers: Header[] = [
    { text: 'Name', value: 'name' },
    { text: 'Height', value: 'info.height' },
    { text: 'Weight', value: 'info.weight' },
    ...
];
const items: Item[] = [
  { name: 'AA', info: { height: '6-2', weight: 185 } },
 ...        
];

v 1.2.4

14 Jun 04:43
7437b31
Compare
Choose a tag to compare

v 1.2.3

12 Jun 13:26
7c2af87
Compare
Choose a tag to compare