working on vueify
This commit is contained in:
parent
51266861f8
commit
fc31598dbb
10
src/main.ts
10
src/main.ts
@ -4,9 +4,17 @@ import { DraggablePlugin } from '@braks/revue-draggable'
|
|||||||
import { createAuth0 } from '@auth0/auth0-vue'
|
import { createAuth0 } from '@auth0/auth0-vue'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
|
|
||||||
|
import 'vuetify/styles' // Global CSS has to be imported
|
||||||
|
import { createVuetify } from 'vuetify'
|
||||||
|
import * as components from 'vuetify/components'
|
||||||
|
import * as directives from 'vuetify/directives'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
const vuetify = createVuetify({
|
||||||
|
components,
|
||||||
|
directives,
|
||||||
|
}) // Replaces new Vuetify(...)
|
||||||
|
app.use(vuetify)
|
||||||
|
|
||||||
app.use(
|
app.use(
|
||||||
createAuth0({
|
createAuth0({
|
||||||
|
Loading…
Reference in New Issue
Block a user