mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 05:28:13 +00:00
7 lines
192 B
TypeScript
7 lines
192 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');
|