Vue RBAC is a flexible and lightweight Role-Based Access Control (RBAC) library for Vue 3 applications. It supports static and dynamic role configurations, including role inheritance and directive-based permission control.
- β Role and permission system with inheritance
- π‘ Supports static, dynamic, and hybrid config modes
- π Custom directives (
v-rbac,v-rbac:role,v-rbac:any) - π§ Programmatic access to permissions and roles
- π API integration for dynamic role loading
- πͺ Built-in Vue plugin and easy setup
pnpm add @nangazaki/vue-rbac// main.ts
import { createApp } from 'vue';
import App from './App.vue';
import { VueRBAC, CONFIG_MODE } from '@nangazaki/vue-rbac';
const app = createApp(App);
app.use(VueRBAC, {
config: {
mode: CONFIG_MODE.STATIC,
autoInit: true,
roles: {
admin: {
permissions: ['users:create', 'posts:create'],
inherits: ['editor'],
},
editor: {
permissions: ['posts:edit'],
},
viewer: {
permissions: ['posts:view'],
},
},
},
});
app.mount('#app');app.use(VueRBAC, {
config: {
mode: CONFIG_MODE.DYNAMIC,
apiEndpoint: 'https://api.example.com/roles',
autoInit: true,
fetchOptions: {
method: "GET",
headers: {
Authorization: "Bearer your-token",
},
},
transformResponse(data) {
return {
roles: data.roles,
};
},
},
});In agnostic mode, you have full control over how roles are fetched or defined β from API calls, stores, or any custom logic.
app.use(VueRBAC, {
config: {
mode: CONFIG_MODE.AGNOSTIC,
autoInit: true,
getRoles: async () => {
// Fetch from any source: API, Pinia, localStorage, etc.
return await fetchUserRoles();
},
},
});Vue RBAC supports built-in storage adapters to persist roles and permissions automatically.
import { localStorageAdapter, sessionStorageAdapter, cookieStorageAdapter } from '@nangazaki/vue-rbac';
app.use(VueRBAC, {
config: {
mode: CONFIG_MODE.DYNAMIC,
storage: localStorageAdapter,
},
});- localStorageAdapter
- sessionStorageAdapter
- cookieStorageAdapter
You can also create custom adapters by implementing the storage interface.
Check for a single permission:
<button v-rbac="'users:create'">Add User</button>Check for a specific role:
<div v-rbac:role="'admin'">Admin Panel</div>Check for any permission in a list:
<div v-rbac:any="['posts:edit', 'posts:create']">
Editor or Admin Access
</div>import { inject } from 'vue';
import type { RBAC } from '@nangazaki/vue-rbac';
const rbac = inject<RBAC>('rbac');
if (rbac?.hasPermission('posts:create')) {
console.log('User can create posts');
}import { defineNuxtPlugin } from '#app';
import { VueRBAC, CONFIG_MODE } from '@nangazaki/vue-rbac';
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(VueRBAC, {
config: {
mode: CONFIG_MODE.DYNAMIC,
apiEndpoint: '/api/roles',
autoInit: true,
transformResponse: (data) => ({ roles: data.roles }),
},
});
});For full TypeScript support, ensure your app includes a declaration:
// shims-vue.d.ts
import type { RBAC } from '@nangazaki/vue-rbac';
declare module 'vue' {
interface ComponentCustomProperties {
$rbac: RBAC;
}
}<template>
<div>
<button v-rbac="'users:create'">Add User</button>
<div v-rbac:role="'admin'">Admin Panel</div>
<div v-rbac:any="['posts:edit', 'posts:create']">Post Management</div>
</div>
</template>npm install
npm run devMIT License Β© 2025 @nangazaki