初次提交
上级
正在显示
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
env.d.ts
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "demo", | ||
| "version": "0.0.0", | ||
| "private": true, | ||
| "type": "module", | ||
| "scripts": { | ||
| "dev": "vite", | ||
| "build": "vue-tsc --noEmit --skipLibCheck && vite build", | ||
| "preview": "vite preview", | ||
| "build-only": "vite build", | ||
| "type-check": "vue-tsc --build --force", | ||
| "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", | ||
| "format": "prettier --write src/" | ||
| }, | ||
| "dependencies": { | ||
| "@element-plus/icons-vue": "^2.3.1", | ||
| "axios": "^1.6.5", | ||
| "element-plus": "^2.5.3", | ||
| "pinia": "^2.1.7", | ||
| "pinia-plugin-persistedstate": "^3.2.1", | ||
| "unplugin-auto-import": "^0.17.3", | ||
| "unplugin-icons": "^0.18.2", | ||
| "unplugin-vue-components": "^0.26.0", | ||
| "vue": "^3.3.11", | ||
| "vue-clipboard3": "^2.0.0", | ||
| "vue-router": "^4.2.5" | ||
| }, | ||
| "devDependencies": { | ||
| "@iconify-json/ep": "^1.1.14", | ||
| "@rushstack/eslint-patch": "^1.3.3", | ||
| "@tsconfig/node18": "^18.2.2", | ||
| "@types/node": "^18.19.3", | ||
| "@vitejs/plugin-vue": "^4.5.2", | ||
| "@vue/eslint-config-prettier": "^8.0.0", | ||
| "@vue/eslint-config-typescript": "^12.0.0", | ||
| "@vue/tsconfig": "^0.5.0", | ||
| "eslint": "^8.49.0", | ||
| "eslint-plugin-vue": "^9.17.0", | ||
| "npm-run-all2": "^6.1.1", | ||
| "prettier": "^3.0.3", | ||
| "typescript": "~5.3.0", | ||
| "vite": "^5.0.10", | ||
| "vue-tsc": "^1.8.25" | ||
| } | ||
| } |
pnpm-lock.yaml
0 → 100644
public/favicon.ico
0 → 100644
4.2 KB
src/App.vue
0 → 100644
src/api/config.ts
0 → 100644
src/api/index.ts
0 → 100644
src/assets/login-background.jpg
0 → 100644
1.0 MB
src/assets/logo.svg
0 → 100644
src/layout/components/aside.vue
0 → 100644
src/layout/components/header.vue
0 → 100644
src/layout/index.vue
0 → 100644
src/main.ts
0 → 100644
src/router/index.ts
0 → 100644
src/stores/helper/piniaPersist.ts
0 → 100644
src/stores/index.ts
0 → 100644
src/stores/modules/tenant.ts
0 → 100644
src/styles/base.css
0 → 100644
src/types/auto-import.d.ts
0 → 100644
src/types/components.d.ts
0 → 100644
src/types/index.d.ts
0 → 100644
src/views/jarManagement/index.vue
0 → 100644
src/views/login/index.vue
0 → 100644
src/views/tenant/index.vue
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
vite.config.ts
0 → 100644