Answers for "what is computed in mobx"

0

what is computed in mobx

import {observable, computed} from 'mobx'

class Page {
  @observable title = ''
  @observable published = false
  @observable author = null

  @computed get authorName () {
    return this.author || 'Anonymous'
  }
}
Posted by: Guest on August-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language