更新代码
This commit is contained in:
parent
f8137ffe66
commit
58d8647e9a
|
@ -0,0 +1,4 @@
|
||||||
|
NODE_ENV = 'development'
|
||||||
|
|
||||||
|
# Base API
|
||||||
|
VITE_APP_BASE_URL=''
|
|
@ -0,0 +1,3 @@
|
||||||
|
NODE_ENV = 'production'
|
||||||
|
# Base API
|
||||||
|
VITE_APP_BASE_URL=''
|
|
@ -0,0 +1,42 @@
|
||||||
|
/* eslint-env node */
|
||||||
|
require('@rushstack/eslint-patch/modern-module-resolution')
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
ignorePatterns: ['/auto-imports.d.ts', '/components.d.ts'],
|
||||||
|
extends: [
|
||||||
|
'plugin:vue/vue3-essential',
|
||||||
|
'eslint:recommended',
|
||||||
|
'@vue/eslint-config-typescript/recommended',
|
||||||
|
'@vue/eslint-config-prettier',
|
||||||
|
'./.eslintrc-auto-import.json'
|
||||||
|
],
|
||||||
|
rules: {
|
||||||
|
'prettier/prettier': [
|
||||||
|
'warn',
|
||||||
|
{
|
||||||
|
semi: false,
|
||||||
|
singleQuote: true,
|
||||||
|
printWidth: 100,
|
||||||
|
proseWrap: 'preserve',
|
||||||
|
bracketSameLine: false,
|
||||||
|
endOfLine: 'lf',
|
||||||
|
tabWidth: 4,
|
||||||
|
useTabs: false,
|
||||||
|
trailingComma: 'none'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'vue/multi-word-component-names': 'off',
|
||||||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||||||
|
'@typescript-eslint/ban-ts-comment': 'off',
|
||||||
|
'no-undef': 'off',
|
||||||
|
'vue/prefer-import-from-vue': 'off',
|
||||||
|
'no-prototype-builtins': 'off',
|
||||||
|
'prefer-spread': 'off',
|
||||||
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||||
|
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off'
|
||||||
|
},
|
||||||
|
globals: {
|
||||||
|
module: 'readonly'
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
coverage
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# unplugin-auto-import
|
||||||
|
auto-imports.d.ts
|
||||||
|
components.d.ts
|
||||||
|
.eslintrc-auto-import.json
|
||||||
|
|
||||||
|
/cypress/videos/
|
||||||
|
/cypress/screenshots/
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
|
||||||
|
# .env
|
||||||
|
.env.development
|
||||||
|
.env.production
|
|
@ -0,0 +1,46 @@
|
||||||
|
# vue-project
|
||||||
|
|
||||||
|
This template should help get you started developing with Vue 3 in Vite.
|
||||||
|
|
||||||
|
## Recommended IDE Setup
|
||||||
|
|
||||||
|
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
||||||
|
|
||||||
|
## Type Support for `.vue` Imports in TS
|
||||||
|
|
||||||
|
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
||||||
|
|
||||||
|
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
||||||
|
|
||||||
|
1. Disable the built-in TypeScript Extension
|
||||||
|
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
||||||
|
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
||||||
|
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
||||||
|
|
||||||
|
## Customize configuration
|
||||||
|
|
||||||
|
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
||||||
|
|
||||||
|
## Project Setup
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
### Compile and Hot-Reload for Development
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm run dev
|
||||||
|
```
|
||||||
|
|
||||||
|
### Type-Check, Compile and Minify for Production
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm run build
|
||||||
|
```
|
||||||
|
|
||||||
|
### Lint with [ESLint](https://eslint.org/)
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm run lint
|
||||||
|
```
|
|
@ -0,0 +1 @@
|
||||||
|
/// <reference types="vite/client" />
|
|
@ -0,0 +1,65 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>后台管理系统</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.preload {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circular {
|
||||||
|
height: 42px;
|
||||||
|
width: 42px;
|
||||||
|
animation: loading-rotate 2s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circular .path {
|
||||||
|
animation: loading-dash 1.5s ease-in-out infinite;
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: 0;
|
||||||
|
stroke-width: 2;
|
||||||
|
stroke: #4073fa;
|
||||||
|
stroke-linecap: round;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes loading-rotate {
|
||||||
|
100% {
|
||||||
|
transform: rotate(1turn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes loading-dash {
|
||||||
|
0% {
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: -40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: -120px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app">
|
||||||
|
<div class="preload">
|
||||||
|
<svg viewBox="25 25 50 50" class="circular">
|
||||||
|
<circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"name": "vue-project",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"preview": "vite preview --port 4173",
|
||||||
|
"build": "vite build && node scripts/release.mjs",
|
||||||
|
"type-check": "vue-tsc --noEmit",
|
||||||
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@element-plus/icons-vue": "^2.0.6",
|
||||||
|
"@highlightjs/vue-plugin": "^2.1.0",
|
||||||
|
"@wangeditor/editor": "^5.1.12",
|
||||||
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
||||||
|
"axios": "^0.27.2",
|
||||||
|
"css-color-function": "^1.3.3",
|
||||||
|
"echarts": "^5.3.3",
|
||||||
|
"element-plus": "2.2.27",
|
||||||
|
"highlight.js": "^11.6.0",
|
||||||
|
"nprogress": "^0.2.0",
|
||||||
|
"pinia": "^2.0.14",
|
||||||
|
"vue": "^3.2.37",
|
||||||
|
"vue-clipboard3": "^2.0.0",
|
||||||
|
"vue-echarts": "^6.2.3",
|
||||||
|
"vue-router": "^4.0.16",
|
||||||
|
"vue3-video-play": "1.3.1-beta.6",
|
||||||
|
"vuedraggable": "^4.1.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@rushstack/eslint-patch": "^1.1.0",
|
||||||
|
"@tailwindcss/line-clamp": "^0.4.2",
|
||||||
|
"@types/lodash-es": "^4.17.6",
|
||||||
|
"@types/node": "^16.11.41",
|
||||||
|
"@types/nprogress": "^0.2.0",
|
||||||
|
"@vitejs/plugin-legacy": "^2.3.1",
|
||||||
|
"@vitejs/plugin-vue": "^3.0.0",
|
||||||
|
"@vitejs/plugin-vue-jsx": "^2.0.0",
|
||||||
|
"@vue/eslint-config-prettier": "^7.0.0",
|
||||||
|
"@vue/eslint-config-typescript": "^11.0.0",
|
||||||
|
"@vue/tsconfig": "^0.1.3",
|
||||||
|
"autoprefixer": "^10.4.7",
|
||||||
|
"consola": "^2.15.3",
|
||||||
|
"eslint": "^8.5.0",
|
||||||
|
"eslint-plugin-vue": "^9.0.0",
|
||||||
|
"execa": "^6.1.0",
|
||||||
|
"fs-extra": "^10.1.0",
|
||||||
|
"postcss": "^8.4.14",
|
||||||
|
"prettier": "^2.5.1",
|
||||||
|
"sass": "^1.53.0",
|
||||||
|
"tailwindcss": "^3.0.24",
|
||||||
|
"terser": "^5.15.1",
|
||||||
|
"typescript": "~4.7.4",
|
||||||
|
"unplugin-auto-import": "^0.9.2",
|
||||||
|
"unplugin-vue-components": "^0.19.9",
|
||||||
|
"vite": "^3.0.0",
|
||||||
|
"vite-plugin-style-import": "^2.0.0",
|
||||||
|
"vite-plugin-svg-icons": "^2.0.1",
|
||||||
|
"vite-plugin-vue-setup-extend": "^0.4.0",
|
||||||
|
"vue-tsc": "^0.38.1"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
autoprefixer: {}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,119 @@
|
||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
||||||
|
theme: {
|
||||||
|
colors: {
|
||||||
|
white: 'var(--color-white)',
|
||||||
|
primary: {
|
||||||
|
DEFAULT: 'var(--el-color-primary)',
|
||||||
|
'light-3': 'var(--el-color-primary-light-3)',
|
||||||
|
'light-5': 'var(--el-color-primary-light-5)',
|
||||||
|
'light-7': 'var(--el-color-primary-light-7)',
|
||||||
|
'light-8': 'var(--el-color-primary-light-8)',
|
||||||
|
'light-9': 'var(--el-color-primary-light-9)',
|
||||||
|
'dark-2': 'var(--el-color-primary-dark-2)'
|
||||||
|
},
|
||||||
|
success: 'var(--el-color-success)',
|
||||||
|
warning: 'var(--el-color-warning)',
|
||||||
|
danger: 'var(--el-color-danger)',
|
||||||
|
error: 'var(--el-color-error)',
|
||||||
|
info: 'var(--el-color-info)',
|
||||||
|
body: 'var(--el-bg-color)',
|
||||||
|
page: 'var(--el-bg-color-page)',
|
||||||
|
'tx-primary': 'var(--el-text-color-primary)',
|
||||||
|
'tx-regular': 'var(--el-text-color-regular)',
|
||||||
|
'tx-secondary': 'var(--el-text-color-secondary)',
|
||||||
|
'tx-placeholder': 'var(--el-text-color-placeholder)',
|
||||||
|
'tx-disabled': 'var(--el-text-color-disabled)',
|
||||||
|
br: 'var(--el-border-color)',
|
||||||
|
'br-light': 'var(--el-border-color-light)',
|
||||||
|
'br-extra-light': 'var(--el-border-color-extra-light)',
|
||||||
|
'br-dark': 'var( --el-border-color-dark)',
|
||||||
|
fill: 'var(--el-fill-color)',
|
||||||
|
'fill-light': 'var(--el-fill-color-light)',
|
||||||
|
'fill-lighter': 'var(--el-fill-color-lighter)',
|
||||||
|
mask: 'var(--el-mask-color)'
|
||||||
|
},
|
||||||
|
fontFamily: {
|
||||||
|
sans: ['PingFang SC', 'Arial', 'Hiragino Sans GB', 'Microsoft YaHei', 'sans-serif']
|
||||||
|
},
|
||||||
|
boxShadow: {
|
||||||
|
DEFAULT: 'var(--el-box-shadow)',
|
||||||
|
light: 'var(--el-box-shadow-light)',
|
||||||
|
lighter: 'var(--el-box-shadow-lighter)',
|
||||||
|
dark: 'var(--el-box-shadow-dark)'
|
||||||
|
},
|
||||||
|
fontSize: {
|
||||||
|
xs: 'var(--el-font-size-extra-small)',
|
||||||
|
sm: 'var( --el-font-size-small)',
|
||||||
|
base: 'var( --el-font-size-base)',
|
||||||
|
lg: 'var( --el-font-size-medium)',
|
||||||
|
xl: 'var( --el-font-size-large)',
|
||||||
|
'2xl': 'var( --el-font-size-extra-large)',
|
||||||
|
'3xl': '20px',
|
||||||
|
'4xl': '24px',
|
||||||
|
'5xl': '28px',
|
||||||
|
'6xl': '30px',
|
||||||
|
'7xl': '36px',
|
||||||
|
'8xl': '48px',
|
||||||
|
'9xl': '60px'
|
||||||
|
},
|
||||||
|
spacing: {
|
||||||
|
px: '1px',
|
||||||
|
0: '0px',
|
||||||
|
0.5: '2px',
|
||||||
|
1: '4px',
|
||||||
|
1.5: '6px',
|
||||||
|
2: '8px',
|
||||||
|
2.5: '10px',
|
||||||
|
3: '12px',
|
||||||
|
3.5: '14px',
|
||||||
|
4: '16px',
|
||||||
|
5: '20px',
|
||||||
|
6: '24px',
|
||||||
|
7: '28px',
|
||||||
|
8: '32px',
|
||||||
|
9: '36px',
|
||||||
|
10: '40px',
|
||||||
|
11: '44px',
|
||||||
|
12: '48px',
|
||||||
|
14: '56px',
|
||||||
|
16: '64px',
|
||||||
|
20: '80px',
|
||||||
|
24: '96px',
|
||||||
|
28: '112px',
|
||||||
|
32: '128px',
|
||||||
|
36: '144px',
|
||||||
|
40: '160px',
|
||||||
|
44: '176px',
|
||||||
|
48: '192px',
|
||||||
|
52: '208px',
|
||||||
|
56: '224px',
|
||||||
|
60: '240px',
|
||||||
|
64: '256px',
|
||||||
|
72: '288px',
|
||||||
|
80: '320px',
|
||||||
|
96: '384px'
|
||||||
|
},
|
||||||
|
lineHeight: {
|
||||||
|
none: '1',
|
||||||
|
tight: '1.25',
|
||||||
|
snug: '1.375',
|
||||||
|
normal: '1.5',
|
||||||
|
relaxed: '1.625',
|
||||||
|
loose: '2',
|
||||||
|
3: '12px',
|
||||||
|
4: '16px',
|
||||||
|
5: '20px',
|
||||||
|
6: '24px',
|
||||||
|
7: '28px',
|
||||||
|
8: '32px',
|
||||||
|
9: '36px',
|
||||||
|
10: '40px'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
plugins: [
|
||||||
|
require('@tailwindcss/line-clamp') // 引入插件
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"extends": "@vue/tsconfig/tsconfig.node.json",
|
||||||
|
"include": ["vite.config.*"],
|
||||||
|
"compilerOptions": {
|
||||||
|
"composite": true,
|
||||||
|
"types": ["node"]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
||||||
|
"include": [
|
||||||
|
"global.d.ts",
|
||||||
|
"src/**/*",
|
||||||
|
"src/**/*.vue",
|
||||||
|
"components.d.ts",
|
||||||
|
"auto-imports.d.ts",
|
||||||
|
"typings/**/*.d.ts"
|
||||||
|
],
|
||||||
|
"compilerOptions": {
|
||||||
|
"isolatedModules": true,
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@/*": ["./src/*"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "./tsconfig.config.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,60 @@
|
||||||
|
import { fileURLToPath, URL } from 'url'
|
||||||
|
|
||||||
|
import { defineConfig } from 'vite'
|
||||||
|
import vue from '@vitejs/plugin-vue'
|
||||||
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||||||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||||||
|
import Components from 'unplugin-vue-components/vite'
|
||||||
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
||||||
|
import { createStyleImportPlugin, ElementPlusResolve } from 'vite-plugin-style-import'
|
||||||
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
||||||
|
import vueSetupExtend from 'vite-plugin-vue-setup-extend'
|
||||||
|
// import legacyPlugin from '@vitejs/plugin-legacy'
|
||||||
|
// https://vitejs.dev/config/
|
||||||
|
export default defineConfig({
|
||||||
|
base: '/admin/',
|
||||||
|
server: {
|
||||||
|
host: '0.0.0.0'
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
vue(),
|
||||||
|
vueJsx(),
|
||||||
|
AutoImport({
|
||||||
|
imports: ['vue', 'vue-router'],
|
||||||
|
resolvers: [ElementPlusResolver()],
|
||||||
|
eslintrc: {
|
||||||
|
enabled: true
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
Components({
|
||||||
|
directoryAsNamespace: true,
|
||||||
|
resolvers: [ElementPlusResolver()]
|
||||||
|
}),
|
||||||
|
createStyleImportPlugin({
|
||||||
|
resolves: [ElementPlusResolve()]
|
||||||
|
}),
|
||||||
|
createSvgIconsPlugin({
|
||||||
|
// 配置路劲在你的src里的svg存放文件
|
||||||
|
iconDirs: [fileURLToPath(new URL('./src/assets/icons', import.meta.url))],
|
||||||
|
symbolId: 'local-icon-[dir]-[name]'
|
||||||
|
}),
|
||||||
|
vueSetupExtend()
|
||||||
|
// legacyPlugin({
|
||||||
|
// targets: ['defaults', 'IE 11']
|
||||||
|
// })
|
||||||
|
],
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
build: {
|
||||||
|
rollupOptions: {
|
||||||
|
manualChunks(id) {
|
||||||
|
if (id.includes('node_modules')) {
|
||||||
|
return id.toString().split('node_modules/')[1].split('/')[0].toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
Loading…
Reference in New Issue