|
1234567891011121314151617 |
- /* @vue/component */
- export default {
- methods: {
- genTProgress: function genTProgress() {
- var col = this.$createElement('th', {
- staticClass: 'column',
- attrs: {
- colspan: this.headerColumns
- }
- }, [this.genProgress()]);
- return this.genTR([col], {
- staticClass: 'v-datatable__progress'
- });
- }
- }
- };
- //# sourceMappingURL=progress.js.map
|