storage
Universal Storage
this.$auth.$storage.setUniversal(key, val, isJson)
this.$auth.$storage.getUniversal(key, isJson)
this.$auth.$storage.syncUniversal(key, defaultValue, isJson)
this.$auth.$storage.removeUniversal(key)Local State
this.$auth.$state
// OR
this.$auth.$storage.$statethis.$auth.$storage.setState(key, val)
this.$auth.$storage.getState(key)
// Watch state changes
this.$auth.$storage.watchState('loggedIn', newValue => { })Cookies
Local Storage
Last updated