mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-04 05:58:12 +00:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
import { createPinia } from 'pinia';
|
|
|
|
createApp(App).use(router).use(createPinia()).mount('#app');
|
|
|