UNPKG

authz-vue

Version:

Authz provides npm for Vue

17 lines (15 loc) 301 B
import './assets/main.css' import { createApp } from 'vue' import App from './App.vue' import { authzCreate } from 'authz-vue' const app = createApp(App) app.use( authzCreate({ domain: '1', clientId: '2', authorizationParams: { redirect_uri: '3', }, }), ) app.mount('#app')