Initial commit
上级
正在显示
.env
0 → 100644
.env.dev
0 → 100644
.env.test
0 → 100644
.eslintrc-auto-import.json
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
auto-imports.d.ts
0 → 100644
cert.js
0 → 100644
deploy.js
0 → 100644
env.d.ts
0 → 100644
https/dev.ezijing.com.key
0 → 100644
https/dev.ezijing.com.pem
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
| { | ||
| "name": "project-online-fi", | ||
| "version": "0.0.0", | ||
| "scripts": { | ||
| "dev": "vite --mode dev", | ||
| "build": "vue-tsc --noEmit && vite build --mode prod && npm run deploy", | ||
| "build:test": "vue-tsc --noEmit && vite build --mode test", | ||
| "build:pre": "vue-tsc --noEmit && vite build --mode pre", | ||
| "preview": "vite preview --port 4173", | ||
| "typecheck": "vue-tsc --noEmit", | ||
| "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", | ||
| "deploy": "node ./deploy.js", | ||
| "cert": "node ./cert.js" | ||
| }, | ||
| "dependencies": { | ||
| "@vueuse/core": "^9.4.0", | ||
| "axios": "^1.1.3", | ||
| "element-plus": "^2.2.19", | ||
| "pinia": "^2.0.23", | ||
| "swiper": "^8.4.4", | ||
| "vue": "^3.2.41", | ||
| "vue-router": "^4.1.6" | ||
| }, | ||
| "devDependencies": { | ||
| "@rushstack/eslint-patch": "^1.1.4", | ||
| "@types/node": "^16.18.2", | ||
| "@vitejs/plugin-vue": "^3.2.0", | ||
| "@vue/eslint-config-typescript": "^11.0.2", | ||
| "@vue/tsconfig": "^0.1.3", | ||
| "ali-oss": "^6.17.1", | ||
| "chalk": "^5.1.2", | ||
| "eslint": "^8.21.0", | ||
| "eslint-plugin-vue": "^9.6.0", | ||
| "sass": "^1.55.0", | ||
| "typescript": "~4.7.4", | ||
| "unplugin-auto-import": "^0.11.4", | ||
| "vite": "^3.2.0", | ||
| "vue-tsc": "^1.0.9" | ||
| } | ||
| } |
src/App.vue
0 → 100644
src/api/base.ts
0 → 100644
src/assets/css/base.css
0 → 100644
src/assets/css/channel.scss
0 → 100644
src/assets/images/logo.png
0 → 100644
14.6 KB
src/components.d.ts
0 → 100644
src/components/base/AppCard.vue
0 → 100644
src/components/layout/Footer.vue
0 → 100644
src/components/layout/Header.vue
0 → 100644
src/components/layout/Index.vue
0 → 100644
src/components/layout/Nav.vue
0 → 100644
src/main.ts
0 → 100644
src/modules/home/index.ts
0 → 100644
src/modules/home/views/Index.vue
0 → 100644
src/modules/index.ts
0 → 100644
src/router/index.ts
0 → 100644
src/stores/user.ts
0 → 100644
src/types.ts
0 → 100644
src/utils/axios.ts
0 → 100644
tsconfig.config.json
0 → 100644
tsconfig.json
0 → 100644
vite.config.ts
0 → 100644