mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
import { createApp } from 'vue';
|
|
import { createPinia } from 'pinia';
|
|
|
|
import App from './App.vue';
|
|
import i18n from './i18n-setup';
|
|
const pinia = createPinia();
|
|
|
|
createApp(App).use(pinia).use(i18n).mount('#app');
|