This commit is contained in:
wucongxing8150 2025-04-15 10:25:56 +08:00
parent 2834ba8437
commit dff788c591
5 changed files with 36 additions and 0 deletions

2
.env.development Normal file
View File

@ -0,0 +1,2 @@
VITE_BASE_URL="https://dev-knowledge.igandan.com/api"

2
.env.production Normal file
View File

@ -0,0 +1,2 @@
VITE_BASE_URL="https://prod-knowledge.igandan.com/api"

2
.env.test Normal file
View File

@ -0,0 +1,2 @@
VITE_BASE_URL="https://dev-knowledge.igandan.com/api"

17
components.d.ts vendored Normal file
View File

@ -0,0 +1,17 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}
declare module 'vue' {
export interface GlobalComponents {
BackView: typeof import('./src/components/backView.vue')['default']
Home: typeof import('./src/components/Home.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
TotalLayout: typeof import('./src/components/totalLayout.vue')['default']
WhyTimer: typeof import('./src/components/whyTimer.vue')['default']
}
}

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://doc.igandan.com/app/html/img/2016/20160714132557.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>知识问答</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>