vue-auth
Vue plugin for easily managing your app's auth state
This is a work in progress and the API may change without notice
Installation
npm require vue-auth --save
var Vue = var VueAuth = Vue
Usage
To access the auth object you'll find the $auth
property on your application instance. (e.g this.$auth.getToken()
)
Options
storagePrefix
- Prefix to the storage keys used in localStorageauthPath
- URI the user should be redirected to to re-authenticateredirectType
- May be eitherrouter
orbrowser
. Which method should the user be redirected with?
Setting options is done the same as all Vue plugins.
Vue
Methods
getToken()
setToken(token)
removeToken()
hasToken()
isAuthenticated()
getUserData()
setUserData(data)
Licence
Copyright (c) 2016 Wade Urry - Released under the MIT Licence