init
parents
Showing
.editorconfig
0 → 100644
.env.ghpages
0 → 100644
.eslintignore
0 → 100644
.eslintrc-auto-import.json
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
env.d.ts
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "preview-pro", | ||
| "version": "0.0.0", | ||
| "private": true, | ||
| "scripts": { | ||
| "dev": "vite", | ||
| "dev:force": "vite --force", | ||
| "build": "vue-tsc --noEmit && vite build", | ||
| "build:ghpages": "vue-tsc --noEmit && vite build --base=/preview-pro/ --mode=ghpages", | ||
| "report": "vite build", | ||
| "preview": "vite preview --port 5050", | ||
| "test:unit": "vitest --environment jsdom", | ||
| "typecheck": "vue-tsc --noEmit && vue-tsc --noEmit -p tsconfig.vitest.json --composite false", | ||
| "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" | ||
| }, | ||
| "dependencies": { | ||
| "@ant-design-vue/pro-layout": "^3.2.1", | ||
| "@ant-design/icons-vue": "^6.1.0", | ||
| "ant-design-vue": "^3.2.0", | ||
| "vue": "^3.2.33", | ||
| "vue-router": "^4.0.14" | ||
| }, | ||
| "devDependencies": { | ||
| "@rushstack/eslint-patch": "^1.1.3", | ||
| "@types/node": "^17.0.25", | ||
| "@vitejs/plugin-vue": "^2.3.1", | ||
| "@vitejs/plugin-vue-jsx": "^1.3.10", | ||
| "@vue/eslint-config-prettier": "^7.0.0", | ||
| "@vue/eslint-config-typescript": "^10.0.0", | ||
| "@vue/tsconfig": "^0.1.3", | ||
| "eslint": "^8.13.0", | ||
| "eslint-plugin-vue": "^8.6.0", | ||
| "less": "^4.1.2", | ||
| "prettier": "^2.6.2", | ||
| "rollup-plugin-visualizer": "^5.6.0", | ||
| "typescript": "~4.5.5", | ||
| "unplugin-auto-import": "^0.5.11", | ||
| "unplugin-vue-components": "^0.17.21", | ||
| "vite": "^2.9.5", | ||
| "vite-plugin-optimize-persist": "^0.1.2", | ||
| "vite-plugin-package-config": "^0.1.1", | ||
| "vitest": "^0.9.3", | ||
| "vue-tsc": "^0.34.6" | ||
| }, | ||
| "author": { | ||
| "email": "18x@loacg.com", | ||
| "name": "Sendya", | ||
| "url": "https://github.com/sendya" | ||
| }, | ||
| "vite": { | ||
| "optimizeDeps": { | ||
| "include": [ | ||
| "@ant-design-vue/pro-layout", | ||
| "ant-design-vue/es", | ||
| "vue", | ||
| "vue-router" | ||
| ] | ||
| } | ||
| } | ||
| } |
pnpm-lock.yaml
0 → 100644
public/favicon.ico
0 → 100644
4.19 KB
public/favicon.svg
0 → 100644
src/App.vue
0 → 100644
src/assets/logo.png
0 → 100644
6.69 KB
src/auto-imports.d.ts
0 → 100644
src/components.d.ts
0 → 100644
src/components/index.ts
0 → 100644
src/hooks/useLoading.ts
0 → 100644
src/hooks/useTheme.ts
0 → 100644
src/layouts/BasicLayout.vue
0 → 100644
src/layouts/BlankLayout.vue
0 → 100644
src/layouts/NestedLayout.vue
0 → 100644
src/main.ts
0 → 100644
src/router/index.ts
0 → 100644
src/views/Detail.vue
0 → 100644
src/views/Page1.vue
0 → 100644
src/views/Page2.vue
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.vite-config.json
0 → 100644
tsconfig.vitest.json
0 → 100644
vite.config.ts
0 → 100644