chore: first commit

This commit is contained in:
Corentin Thomasset 2022-03-31 00:33:29 +02:00
commit 64c92a661c
No known key found for this signature in database
GPG key ID: DBD997E935996158
37 changed files with 13458 additions and 0 deletions

15
src/main.ts Normal file
View file

@ -0,0 +1,15 @@
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');