fileserver/frontend/src/main.ts

9 lines
231 B
TypeScript
Raw Normal View History

2022-08-30 19:26:35 +00:00
import { createApp } from 'vue';
import router from './router';
import AppAsyncWrapper from './AppAsyncWrapper.vue';
2022-08-17 19:59:51 +00:00
const app = createApp(AppAsyncWrapper);
app.use(router);
app.config.unwrapInjectedRef = true;
2022-08-30 19:26:35 +00:00
app.mount('#app');