You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
4 years ago
|
export default {
|
||
|
table: {
|
||
|
tableWrapper: '',
|
||
|
tableHeaderClass: 'mb-0',
|
||
|
tableBodyClass: 'mb-0',
|
||
|
tableClass: 'table table-bordered table-hover table-sm table-condensed whitespace',
|
||
|
loadingClass: 'loading',
|
||
|
ascendingIcon: 'fa fa-chevron-up',
|
||
|
descendingIcon: 'fa fa-chevron-down',
|
||
|
ascendingClass: 'sorted-asc',
|
||
|
descendingClass: 'sorted-desc',
|
||
|
sortableIcon: 'fa fa-sort',
|
||
|
detailRowClass: 'vuetable-detail-row',
|
||
|
handleIcon: 'fa fa-bars text-secondary',
|
||
|
renderIcon: function(classes, options) {
|
||
|
return `<i class="${classes.join(" ")}" ${options}></span>`;
|
||
|
}
|
||
|
},
|
||
|
paginationInfo: {
|
||
|
infoClass: 'pull-left float-left align-self-end'
|
||
|
},
|
||
|
pagination: {
|
||
|
wrapperClass: "pagination pull-right float-right",
|
||
|
activeClass: "active",
|
||
|
disabledClass: "disabled",
|
||
|
pageClass: "btn btn-border",
|
||
|
linkClass: "btn btn-border",
|
||
|
paginationClass: "pagination",
|
||
|
paginationInfoClass: "float-left",
|
||
|
//pagination-info-class=""
|
||
|
//pagination-component-class=""
|
||
|
dropdownClass: "form-control",
|
||
|
icons: {
|
||
|
first: "",
|
||
|
prev: "",
|
||
|
next: "",
|
||
|
last: ""
|
||
|
}
|
||
|
}
|
||
|
}
|