Files
podsteadr/frontend/src/main.ts
T

8 lines
218 B
TypeScript
Raw Normal View History

import { createApp } from 'vue';
import { createPinia } from 'pinia';
import App from './App.vue';
import { router } from './router';
import './style.css';
createApp(App).use(createPinia()).use(router).mount('#app');