We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Can we call store function in another store ? See the example below :
StoreA = store({ value : 1, incrementVal(){ StoreA.value++ } }) StoreB = store({ test(){ StoreA.incrementVal() } })
I want this feature please