v1.7.0
-
Fixed header feature is now supported via
table-height
prop, thanks to @rubinsh PR #266.
See doc for more detail. -
new field definition option:
width
It is recommended that you use thewidth
option to specify the width of each field when using fixed header table. Thanks to @rubinsh. -
no-data-template
prop is now support HTML, PR #292. Thanks to @itelmenko. -
new prop:
show-sort-icons
, also new options incss
prop:ascendingClass
anddescendingClass
When enabled, Vuetable will add additional css class to the<th>
that would allow specific styling targeting the sort direction. See PR #262 and #263 for more info, thanks to @jwkicklighter. -
new event:
vuetable:row-mouseover
, thanks to @DorkasV -
new prop:
httpFetch
(type:Function
, default:null
)
When specified, allowing user to specify external http request function to fetch the data via AJAX, otherwise, fallback to usingaxios
internally as discussed in #127 -
new
css.sortableIcon
option. (type:String
, default:''
)
When given, allow specifying css class to be displayed to provide visual clue which column is sortable. PR #192, thanks to @SUKOHI. -
new prop:
initial-page
(type:Function
, default:1
)
Allow specifying the first page number of the data to be loaded during initialization. -
Fixes
-
others:
- Thanks @muhammadsaeedparacha for PR #207 updating doc.
- Thanks @SergeyMiracle for PR #286, removing babel-preset-2015 dependency.