2019-04-17 15:58:15 +02:00
|
|
|
/* @vue/component */
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
genTFoot: function genTFoot() {
|
|
|
|
if (!this.$slots.footer) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
var footer = this.$slots.footer;
|
|
|
|
var row = this.hasTag(footer, 'td') ? this.genTR(footer) : footer;
|
|
|
|
return this.$createElement('tfoot', [row]);
|
|
|
|
},
|
|
|
|
genActionsFooter: function genActionsFooter() {
|
|
|
|
if (this.hideActions) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return this.$createElement('div', {
|
|
|
|
'class': this.classes
|
|
|
|
}, this.genActions());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=foot.js.map
|