async showHistory() {
this.loading = true
if (this.offset === this.history_length) {
const historyUrl = /api/v2/companies/${this.company.id}/history/?offset=${this.offset}&limit=${this.limit}
const { data } = await this.$api.fetch(
{url: historyUrl})
this.history_length = data.length
this.history_items.push(...data)
}
this.history_showed = true
this.loading = false
},
а в чем проблема? или имеется ввиду код улучшить?
Обсуждают сегодня