djledda.de main
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

11 righe
314 B

  1. import { createSSRApp } from "vue";
  2. import { createRouter, createWebHistory } from "vue-router";
  3. import GERoot, { routes } from "@/generative-energy/GERoot.tsx";
  4. createSSRApp(GERoot)
  5. .use(createRouter({
  6. routes,
  7. history: createWebHistory('/generative-energy')
  8. }))
  9. .mount('#app-root');