Files
djledda-web/app/generative-energy/client.ts
Daniel Ledda bcb820f35e nice
2024-10-31 23:46:23 +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');