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.

progress.js 482B

1234567891011121314151617
  1. /* @vue/component */
  2. export default {
  3. methods: {
  4. genTProgress: function genTProgress() {
  5. var col = this.$createElement('th', {
  6. staticClass: 'column',
  7. attrs: {
  8. colspan: this.headerColumns
  9. }
  10. }, [this.genProgress()]);
  11. return this.genTR([col], {
  12. staticClass: 'v-datatable__progress'
  13. });
  14. }
  15. }
  16. };
  17. //# sourceMappingURL=progress.js.map