├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── env.d.ts ├── githubshow ├── 屏幕截图 2024-04-09 233851.png ├── 屏幕截图 2024-04-14 161231.png ├── 屏幕截图 2024-04-14 161337.png └── 屏幕截图 2024-04-14 195319.png ├── index.html ├── package.json ├── public ├── favicon.ico └── images │ ├── CogView.png │ ├── autodl.png │ ├── chatgpt.png │ ├── chatgpt35 (2).png │ ├── chatgpt35.jpeg │ ├── chatgpt35.png │ ├── chatnavigationshow.png │ ├── chatnavigationshow1.png │ ├── chatnavigationshow3.jpg │ ├── fastlink.png │ ├── github.png │ ├── huggingface_logo-noborder.svg │ ├── kimi.png │ ├── kimiunactivate.png │ ├── kumiactivate.png │ ├── llama.webp │ ├── llama2.svg │ ├── login-background3.jpg │ ├── login-form-logo.png │ ├── maisu.png │ ├── movecard12.webp │ ├── movecard13.jpg │ ├── movecard14.png │ ├── movecard15.webp │ ├── movecard6.jpg │ ├── movecard9.png │ ├── nav-ai-Anthropi.png │ ├── nav-ai-ChatGPT.png │ ├── nav-ai-DALLE2.png │ ├── nav-ai-Midjourney.png │ ├── nav-ai-NijiJourney.png │ ├── nav-ai-bard.png │ ├── nav-ai-colossalai.png │ ├── nav-ai-newbing.png │ ├── nav-ai-stable.png │ ├── nav-ai-tongyi.png │ ├── nav-ai-wxyg.png │ ├── nav-ai-wxyy.png │ ├── qiji.png │ ├── sovits.png │ ├── touxiang.jpg │ ├── user.png │ ├── vip-card-activate.png │ ├── vip-card.png │ ├── weblogo.png │ ├── whisper-large-v2.png │ ├── zhipu.png │ ├── zhipuqingyan.gif │ └── 屏幕截图 2024-04-09 090652.png ├── src ├── App.vue ├── components │ ├── Home-components │ │ ├── Advance.vue │ │ ├── Aside.vue │ │ ├── Chatskeleton.vue │ │ ├── Showcards.vue │ │ ├── Smallcard.vue │ │ └── Startskeleton.vue │ └── Login-components │ │ ├── LoginBody.vue │ │ ├── LoginForm.vue │ │ ├── LoginHeader.vue │ │ └── SignUpFrom.vue ├── main.ts ├── pages │ ├── Home.vue │ └── Login.vue ├── router │ └── index.ts ├── store │ ├── useChatapiStore.ts │ ├── useChatweblistStore.ts │ ├── useRepositoriesStore.ts │ └── useStartlinklistStore.ts ├── utils │ └── emitter.ts └── views │ ├── Blogs.vue │ ├── Chat.vue │ ├── ChatNavigation.vue │ ├── Chatgpt.vue │ ├── CogView.vue │ ├── GLM4.vue │ ├── KImi.vue │ ├── Projects.vue │ └── Start.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/components.d.ts -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /githubshow/屏幕截图 2024-04-09 233851.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/githubshow/屏幕截图 2024-04-09 233851.png -------------------------------------------------------------------------------- /githubshow/屏幕截图 2024-04-14 161231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/githubshow/屏幕截图 2024-04-14 161231.png -------------------------------------------------------------------------------- /githubshow/屏幕截图 2024-04-14 161337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/githubshow/屏幕截图 2024-04-14 161337.png -------------------------------------------------------------------------------- /githubshow/屏幕截图 2024-04-14 195319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/githubshow/屏幕截图 2024-04-14 195319.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/CogView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/CogView.png -------------------------------------------------------------------------------- /public/images/autodl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/autodl.png -------------------------------------------------------------------------------- /public/images/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatgpt.png -------------------------------------------------------------------------------- /public/images/chatgpt35 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatgpt35 (2).png -------------------------------------------------------------------------------- /public/images/chatgpt35.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatgpt35.jpeg -------------------------------------------------------------------------------- /public/images/chatgpt35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatgpt35.png -------------------------------------------------------------------------------- /public/images/chatnavigationshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatnavigationshow.png -------------------------------------------------------------------------------- /public/images/chatnavigationshow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatnavigationshow1.png -------------------------------------------------------------------------------- /public/images/chatnavigationshow3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/chatnavigationshow3.jpg -------------------------------------------------------------------------------- /public/images/fastlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/fastlink.png -------------------------------------------------------------------------------- /public/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/github.png -------------------------------------------------------------------------------- /public/images/huggingface_logo-noborder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/huggingface_logo-noborder.svg -------------------------------------------------------------------------------- /public/images/kimi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/kimi.png -------------------------------------------------------------------------------- /public/images/kimiunactivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/kimiunactivate.png -------------------------------------------------------------------------------- /public/images/kumiactivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/kumiactivate.png -------------------------------------------------------------------------------- /public/images/llama.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/llama.webp -------------------------------------------------------------------------------- /public/images/llama2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/llama2.svg -------------------------------------------------------------------------------- /public/images/login-background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/login-background3.jpg -------------------------------------------------------------------------------- /public/images/login-form-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/login-form-logo.png -------------------------------------------------------------------------------- /public/images/maisu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/maisu.png -------------------------------------------------------------------------------- /public/images/movecard12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard12.webp -------------------------------------------------------------------------------- /public/images/movecard13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard13.jpg -------------------------------------------------------------------------------- /public/images/movecard14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard14.png -------------------------------------------------------------------------------- /public/images/movecard15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard15.webp -------------------------------------------------------------------------------- /public/images/movecard6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard6.jpg -------------------------------------------------------------------------------- /public/images/movecard9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/movecard9.png -------------------------------------------------------------------------------- /public/images/nav-ai-Anthropi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-Anthropi.png -------------------------------------------------------------------------------- /public/images/nav-ai-ChatGPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-ChatGPT.png -------------------------------------------------------------------------------- /public/images/nav-ai-DALLE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-DALLE2.png -------------------------------------------------------------------------------- /public/images/nav-ai-Midjourney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-Midjourney.png -------------------------------------------------------------------------------- /public/images/nav-ai-NijiJourney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-NijiJourney.png -------------------------------------------------------------------------------- /public/images/nav-ai-bard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-bard.png -------------------------------------------------------------------------------- /public/images/nav-ai-colossalai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-colossalai.png -------------------------------------------------------------------------------- /public/images/nav-ai-newbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-newbing.png -------------------------------------------------------------------------------- /public/images/nav-ai-stable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-stable.png -------------------------------------------------------------------------------- /public/images/nav-ai-tongyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-tongyi.png -------------------------------------------------------------------------------- /public/images/nav-ai-wxyg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-wxyg.png -------------------------------------------------------------------------------- /public/images/nav-ai-wxyy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/nav-ai-wxyy.png -------------------------------------------------------------------------------- /public/images/qiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/qiji.png -------------------------------------------------------------------------------- /public/images/sovits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/sovits.png -------------------------------------------------------------------------------- /public/images/touxiang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/touxiang.jpg -------------------------------------------------------------------------------- /public/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/user.png -------------------------------------------------------------------------------- /public/images/vip-card-activate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/vip-card-activate.png -------------------------------------------------------------------------------- /public/images/vip-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/vip-card.png -------------------------------------------------------------------------------- /public/images/weblogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/weblogo.png -------------------------------------------------------------------------------- /public/images/whisper-large-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/whisper-large-v2.png -------------------------------------------------------------------------------- /public/images/zhipu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/zhipu.png -------------------------------------------------------------------------------- /public/images/zhipuqingyan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/zhipuqingyan.gif -------------------------------------------------------------------------------- /public/images/屏幕截图 2024-04-09 090652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/public/images/屏幕截图 2024-04-09 090652.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/Home-components/Advance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Advance.vue -------------------------------------------------------------------------------- /src/components/Home-components/Aside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Aside.vue -------------------------------------------------------------------------------- /src/components/Home-components/Chatskeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Chatskeleton.vue -------------------------------------------------------------------------------- /src/components/Home-components/Showcards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Showcards.vue -------------------------------------------------------------------------------- /src/components/Home-components/Smallcard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Smallcard.vue -------------------------------------------------------------------------------- /src/components/Home-components/Startskeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Home-components/Startskeleton.vue -------------------------------------------------------------------------------- /src/components/Login-components/LoginBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Login-components/LoginBody.vue -------------------------------------------------------------------------------- /src/components/Login-components/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Login-components/LoginForm.vue -------------------------------------------------------------------------------- /src/components/Login-components/LoginHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Login-components/LoginHeader.vue -------------------------------------------------------------------------------- /src/components/Login-components/SignUpFrom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/components/Login-components/SignUpFrom.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pages/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/pages/Home.vue -------------------------------------------------------------------------------- /src/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/pages/Login.vue -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/store/useChatapiStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/store/useChatapiStore.ts -------------------------------------------------------------------------------- /src/store/useChatweblistStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/store/useChatweblistStore.ts -------------------------------------------------------------------------------- /src/store/useRepositoriesStore.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/useStartlinklistStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/store/useStartlinklistStore.ts -------------------------------------------------------------------------------- /src/utils/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/utils/emitter.ts -------------------------------------------------------------------------------- /src/views/Blogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/Blogs.vue -------------------------------------------------------------------------------- /src/views/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/Chat.vue -------------------------------------------------------------------------------- /src/views/ChatNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/ChatNavigation.vue -------------------------------------------------------------------------------- /src/views/Chatgpt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/Chatgpt.vue -------------------------------------------------------------------------------- /src/views/CogView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/CogView.vue -------------------------------------------------------------------------------- /src/views/GLM4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/GLM4.vue -------------------------------------------------------------------------------- /src/views/KImi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/KImi.vue -------------------------------------------------------------------------------- /src/views/Projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/Projects.vue -------------------------------------------------------------------------------- /src/views/Start.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/src/views/Start.vue -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phbst/AI_Home_vue3/HEAD/vite.config.ts --------------------------------------------------------------------------------