mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 05:03:52 +01:00
15 lines
267 B
JavaScript
15 lines
267 B
JavaScript
|
import '/resources/js_vue3/assets/app.scss';
|
||
|
|
||
|
import { createApp } from 'vue'
|
||
|
// import { createPinia } from 'pinia'
|
||
|
|
||
|
import App from './App.vue'
|
||
|
import router from './router'
|
||
|
|
||
|
const app = createApp(App)
|
||
|
|
||
|
// app.use(createPinia())
|
||
|
app.use(router)
|
||
|
|
||
|
app.mount('#app')
|