18 lines
483 B
JavaScript
18 lines
483 B
JavaScript
|
/* @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
|