My value in example code is declared as:
background: sync("extra/visual@colours.colourBackground|customaction")
I can see in vue devtools, that, when trying to modify text in input box, sync event gets emitted as such:
The payload[0] doesn't seem to look right. It should have been $store.customaction if it's meant to be pointing to a custom action/mutation or something like that, I think?
Hi, not sure if I'm doing it wrong - checked source code for your sync(), but can't find an issue with my application.
Basically, when I'm using computed
sync(a.b.c!customaction)
, the customaction does not get executed. Code example: https://6y6vqmm38n.codesandbox.io/#/helloworld codepen: https://codesandbox.io/s/6y6vqmm38nMy value in example code is declared as:
background: sync("extra/visual@colours.colourBackground|customaction")
I can see in vue devtools, that, when trying to modify text in input box,sync
event gets emitted as such:The payload[0] doesn't seem to look right. It should have been
$store.customaction
if it's meant to be pointing to a custom action/mutation or something like that, I think?