vue-role: access control list in vuejs
We will help you to control the permission of access in your app for yours components and routes
Installation
# yarn yarn add vue-role# npm npm install vue-role --save
Get Started
Create the role.js
file to define your role settings and global roles:
Vue
More details:
- RoleInstaller: plugin class for install in Vue with Vue.use
- RoleCreate: class to define role settings
- initial: first permission, for startup with your app
- notfound: route for 404 error, add
forwardQueryParams: true
if you want to forward all query params, - router: your VueRouter instance
- acceptLocalRoles: if you can define new roles inside vue components
- globalRoles: define globals roles for access in routes and any components
- middleware: async method executed in all route change event, to get user in your api and change permission
- Role: class with role builder, the instance receive initial permission.
- or: method for add OR condition in role, e.g: if current permission is public OR admin the role isPublic equals true
- and: method for add AND condition in role, e.g: if current permission contains user AND inside the role isLogged equals true
- generate: this method should called to create and compile your role query
In your router.js
file, you can define permissions for yours routes:
Vue
More details:
- Define
role
meta for link a route with a permission, your can use name of the global role e.gisPublic
or useRole
for create new role orr use*
for define allowed route.
For finish, in your main.js
import the role
and pass to Vue root instance:
VueconfigproductionTip = false router role
Use in components
If you defined acceptLocalRoles
as true
, you can define computed properties with new roles, but this roles works only in component:
computed: { return 'create' }
You can also check roles for display custom elements in your layout:
Set admin permisson Set public permission
E.g: if isAdmin
is not true the button 'Set admin permisson' is displayed.
Finish, you can change current permission in any component using change
method:
Set admin permisson Set public permission
In your component can add observer for current Role:
{ this$role { console }}