Ohm-Management - Projektarbeit B-ME
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.

foot.js 758B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. /* @vue/component */
  6. exports.default = {
  7. methods: {
  8. genTFoot: function genTFoot() {
  9. if (!this.$slots.footer) {
  10. return null;
  11. }
  12. var footer = this.$slots.footer;
  13. var row = this.hasTag(footer, 'td') ? this.genTR(footer) : footer;
  14. return this.$createElement('tfoot', [row]);
  15. },
  16. genActionsFooter: function genActionsFooter() {
  17. if (this.hideActions) {
  18. return null;
  19. }
  20. return this.$createElement('div', {
  21. 'class': this.classes
  22. }, this.genActions());
  23. }
  24. }
  25. };
  26. //# sourceMappingURL=foot.js.map