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 673B

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