djledda.de main
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

2 месяцев назад
12345678910
  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');