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