UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

23 lines (20 loc) 519 B
export default { methods: { genTFoot: function genTFoot() { if (!this.$slots.footer) { return null; } var footer = this.$slots.footer; var row = this.needsTR(footer) ? 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()); } } };