/
eb
/
js-excel
Обзор
Документация
Войти
/
eb
/
js-excel
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/core/ExcelStateComponent.js
20 строк
411 B
Evgeniy Budaev
Finish redux and table logic
16 июн 2020, 10:52
16 июн 2020, 10:52
b7d4906
Код
Авторство
О чём код?
import {ExcelComponent} from "@core/ExcelComponent"; export class ExcelStateComponent extends ExcelComponent { constructor(...args) { super(...args); } get template() { return JSON.stringify(this.state, null, 2) } initState(initialState) { this.state = {...initialState} } setState(newState) { this.state = {...this.state, ...newState} this.$root.html(this.template) } }