samgis / static /src /main.ts
aletrn's picture
[feat] add working static frontend
aa983ad
raw
history blame
112 Bytes
import { createApp } from "vue";
import App from "./App.vue";
const app = createApp(App);
app.mount("#root");