Files
djledda-web/app/generative-energy/client.ts
Daniel Ledda 7539e6ed48 updatge
2024-11-01 15:42:09 +01:00

11 lines
314 B
TypeScript

import { createSSRApp } from "vue";
import { createRouter, createWebHistory } from "vue-router";
import GERoot, { routes } from "@/generative-energy/GERoot.tsx";
createSSRApp(GERoot)
.use(createRouter({
routes,
history: createWebHistory("/generative-energy"),
}))
.mount("#app-root");