djledda.de main
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

client.ts 392 B

il y a 2 mois
il y a 2 mois
il y a 2 mois
il y a 2 mois
il y a 2 mois
il y a 2 mois
il y a 2 mois
il y a 2 mois
123456789101112
  1. import { createSSRApp } from "vue";
  2. import { createRouter, createWebHistory } from "vue-router";
  3. import GERoot, { routes } from "@/generative-energy/GERoot.tsx";
  4. import { cssRegistry } from "@/util.ts";
  5. createSSRApp(GERoot)
  6. .provide(cssRegistry, new Set())
  7. .use(createRouter({
  8. routes,
  9. history: createWebHistory("/generative-energy"),
  10. }))
  11. .mount("#app-root");