2019-04-17 15:58:15 +02:00
|
|
|
/* @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'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=progress.js.map
|