djledda.de main
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 个月前
2 个月前
2 个月前
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");