구세대(?) 상태관리, class를 사용하는 방법등으로 외면받았던 mbox
이번에 정리된 문법을 보니 상당히 깔끔하네요.
과연 mobx는 어떻게 될것인지, class나 객체기반 상태관리의 패러다임은 찾아올것인지
한번 읽어보세요. 🙂
https://michel.codes/blogs/mobx-decorators?utm_source=substack&utm_medium=email
```ts
import { observable, computed, action, flow } from "mobx"
class Doubler {
@observable accessor value
constructor(value) {
this.value = value
}
@computed
get double() {
return this.value * 2
}
@action
increment() {
this.value++
}
@flow
*fetch() {
const response = yield fetch("/api/value")
this.value = response.json()
}
}
```
다음 내용이 궁금하다면?
이미 회원이신가요?
2023년 12월 6일 오전 10:19