17 lines
482 B
JavaScript
Raw Normal View History

/* @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