mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
![]() |
import { createApp } from 'vue';
|
||
|
import { createPinia } from 'pinia';
|
||
|
|
||
|
import { naive } from './plugins/naive.plugin';
|
||
|
|
||
|
import App from './App.vue';
|
||
|
import router from './router';
|
||
|
|
||
|
const app = createApp(App);
|
||
|
|
||
|
app.use(createPinia());
|
||
|
app.use(router);
|
||
|
app.use(naive);
|
||
|
|
||
|
app.mount('#app');
|