joelpanor
Results
1
issues of
joelpanor
Can we call store function in another store ? See the example below : ```javascript StoreA = store({ value : 1, incrementVal(){ StoreA.value++ } }) StoreB = store({ test(){ StoreA.incrementVal()...
enhancement