Skip to content

v2.1.0

Compare
Choose a tag to compare
@williamcruzme williamcruzme released this 28 Sep 23:02
· 22 commits to master since this release
  • Vue 3 support
  • The role-or-permission directive now supports modifiers

Vue 3 support

import { createApp } from 'vue'
import VueGates from 'vue-gates'
import App from './App.vue'

createApp(App)
  .use(VueGates)
  .mount('#app')

To learn more about the Vue 3, see the official documentation.