fix(tracker): fix vue store sending
This commit is contained in:
parent
3d86fcf635
commit
71010698c1
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ export default function(opts: Partial<Options> = {}) {
|
|||
if (store.subscribe) {
|
||||
const randomId = Math.random().toString(36).substring(2, 9)
|
||||
store.subscribe((mutation, storeState) => {
|
||||
state[storeName || randomId] = state
|
||||
state[storeName || randomId] = storeState
|
||||
processMutationAndState(app, options, encoder, mutation, state);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue