fileserver/frontend/src/main.ts

9 lines
231 B
TypeScript
Raw Normal View History

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