vuex-cache
Advanced tools
Changelog
1.3.0
Add timeout
option to dispatch options.
store.cache.dispatch({
type: 'UPDATE_USER',
param: payload,
timeout: 100,
})
// Or using dispatch's third argument (`DispatchOptions`).
store.cache.dispatch('UPDATE_USER', payload, {
timeout: 100,
})
Improvement suggested by @razekteixeira on #11 and by @samsebastian on #4.
Changelog
1.2.0
babel
to version 7 and use babel-env
;jest
instead of mocha
and expect
for unit tests;