Created
April 11, 2019 12:08
-
-
Save GeorgeWL/a6e2befae60ed1cc59fe5caea9883d71 to your computer and use it in GitHub Desktop.
mobx.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export Class TestStore{ | |
private isTest:boolean=false; | |
@computed | |
public get IsTest():boolean { | |
return this.isTest; | |
} | |
@action setTest(state: boolean){ | |
this.isTest = state; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment