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

13 行
402 B

  1. import { createSSRApp } from "vue";
  2. import { createMemoryHistory, createRouter } from "vue-router";
  3. import GERoot, { routes } from "@/generative-energy/GERoot.tsx";
  4. export default function createApp() {
  5. const router = createRouter({
  6. routes,
  7. history: createMemoryHistory("/generative-energy"),
  8. });
  9. const app = createSSRApp(GERoot).use(router);
  10. return { app, router };
  11. }