12345678910111213141516171819202122 |
- /* @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());
- }
- }
- };
- //# sourceMappingURL=foot.js.map
|