handin-website/frontend/src/main.ts
2026-03-02 20:09:27 +01:00

5 lines
115 B
TypeScript

import { createApp } from "vue";
import App from "./App.vue";
import "./style.css";
createApp(App).mount("#app");