You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call() helper is actually to call store actions.
What you want (I presume) is either the sync helper:
exportdefault{computed: {value: sync('myModule/nestedProperties@subproperty1')// using sync, even though we won't get},methods: {setValue(value){this.value=value}}}
Hi,
I've a simple a store with some nested properties, such as
How can I use call() helper in a component to set "subproperty1" value? I've unsuccessfully tried various combination to define it, such as:
or
Actually I didn't found any example, is that possible?
The text was updated successfully, but these errors were encountered: