diff --git a/commitlint.config.js b/commitlint.config.js
index 416d292..35f3ba8 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -1,32 +1,32 @@
module.exports = {
- extents: ['@commitlint/config-conventional']
- // rules: {
- // 'body-leading-blank': [1, 'always'],
- // 'footer-leading-blank': [1, 'always'],
- // 'header-max-length': [2, 'always', 72],
- // 'scope-case': [2, 'always', 'lower-case'],
- // 'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
- // 'subject-empty': [2, 'never'],
- // 'subject-full-stop': [2, 'never', '.'],
- // 'type-case': [2, 'always', 'lower-case'],
- // 'type-empty': [2, 'never'],
- // 'type-enum': [
- // 2,
- // 'always',
- // [
- // 'build',
- // 'chore',
- // 'ci',
- // 'docs',
- // 'feat',
- // 'fix',
- // 'improvement',
- // 'perf',
- // 'refactor',
- // 'revert',
- // 'style',
- // 'test'
- // ]
- // ]
- // }
+ extents: ['@commitlint/config-conventional'],
+ rules: {
+ // 'body-leading-blank': [1, 'always'],
+ // 'footer-leading-blank': [1, 'always'],
+ // 'header-max-length': [2, 'always', 72],
+ // 'scope-case': [2, 'always', 'lower-case'],
+ // 'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
+ // 'subject-empty': [2, 'never'],
+ // 'subject-full-stop': [2, 'never', '.'],
+ // 'type-case': [2, 'always', 'lower-case'],
+ // 'type-empty': [2, 'never'],
+ 'type-enum': [
+ 2,
+ 'always',
+ [
+ 'build',
+ 'chore',
+ 'ci',
+ 'docs',
+ 'feat',
+ 'fix',
+ 'improvement',
+ 'perf',
+ 'refactor',
+ 'revert',
+ 'style',
+ 'test'
+ ]
+ ]
+ }
}
diff --git a/components.d.ts b/components.d.ts
index 50d91c8..28f6e34 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -7,6 +7,7 @@ export {}
declare module 'vue' {
export interface GlobalComponents {
+ Echarts: typeof import('./src/components/echarts/ECharts.vue')['default']
HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
diff --git a/index.html b/index.html
index dde16aa..c164cc0 100644
--- a/index.html
+++ b/index.html
@@ -1,13 +1,80 @@
-
-
-
-
- Vite + Vue + TS
-
-
-
-
-
+
+
+
+
+ 五味子云相册
+
+
+
+
+
diff --git a/package.json b/package.json
index e3807c7..fefd8a2 100644
--- a/package.json
+++ b/package.json
@@ -17,6 +17,7 @@
"axios": "^1.6.8",
"core-js": "^3.36.1",
"cz-customizable": "^7.0.0",
+ "echarts": "^5.5.0",
"husky": "^9.0.11",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3db307c..744f238 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -20,6 +20,9 @@ dependencies:
cz-customizable:
specifier: ^7.0.0
version: 7.0.0
+ echarts:
+ specifier: ^5.5.0
+ version: 5.5.0
husky:
specifier: ^9.0.11
version: 9.0.11
@@ -3214,6 +3217,13 @@ packages:
is-obj: 2.0.0
dev: true
+ /echarts@5.5.0:
+ resolution: {integrity: sha512-rNYnNCzqDAPCr4m/fqyUFv7fD9qIsd50S6GDFgO1DxZhncCsNsG7IfUlAlvZe5oSEQxtsjnHiUuppzccry93Xw==}
+ dependencies:
+ tslib: 2.3.0
+ zrender: 5.5.0
+ dev: false
+
/editor@1.0.0:
resolution: {integrity: sha512-SoRmbGStwNYHgKfjOrX2L0mUvp9bUVv0uPppZSOMAntEbcFtoC3MKF5b3T6HQPXKIV+QGY3xPO3JK5it5lVkuw==}
dev: false
@@ -5867,6 +5877,10 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: false
+ /tslib@2.3.0:
+ resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
+ dev: false
+
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
@@ -6343,3 +6357,9 @@ packages:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
engines: {node: '>=12.20'}
dev: true
+
+ /zrender@5.5.0:
+ resolution: {integrity: sha512-O3MilSi/9mwoovx77m6ROZM7sXShR/O/JIanvzTwjN3FORfLSr81PsUGd7jlaYOeds9d8tw82oP44+3YucVo+w==}
+ dependencies:
+ tslib: 2.3.0
+ dev: false
diff --git a/public/schisandra.svg b/public/schisandra.svg
new file mode 100644
index 0000000..0d2dba9
--- /dev/null
+++ b/public/schisandra.svg
@@ -0,0 +1 @@
+
diff --git a/public/vite.svg b/public/vite.svg
deleted file mode 100644
index e7b8dfb..0000000
--- a/public/vite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/App.vue b/src/App.vue
index c6a6cf1..02c04d5 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,32 +1,10 @@
-
+
-
-
+
+
+
+
+
+
-
-
diff --git a/src/assets/img/wallhaven.jpg b/src/assets/img/wallhaven.jpg
new file mode 100644
index 0000000..98de1f0
Binary files /dev/null and b/src/assets/img/wallhaven.jpg differ
diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue
deleted file mode 100644
index 5bd9024..0000000
--- a/src/components/HelloWorld.vue
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
- {{ msg }}
-
-
-
-
- Edit
- components/HelloWorld.vue
to test HMR
-
-
-
-
- Check out
- create-vue, the official Vue + Vite
- starter
-
-
- Install
- Volar
- in your IDE for a better DX
-
- Click on the Vite and Vue logos to learn more
-
-
-
-
diff --git a/src/components/echarts/ECharts.vue b/src/components/echarts/ECharts.vue
new file mode 100644
index 0000000..5ef6f45
--- /dev/null
+++ b/src/components/echarts/ECharts.vue
@@ -0,0 +1,66 @@
+
+
+
+
+
diff --git a/src/components/svgIcon/SvgIcon.vue b/src/components/svgIcon/SvgIcon.vue
index c8921bc..2a7a9f9 100644
--- a/src/components/svgIcon/SvgIcon.vue
+++ b/src/components/svgIcon/SvgIcon.vue
@@ -1,5 +1,6 @@
+
+
+
+
Login
+ 测试页面,看到这个,那么项目就成功跑起来了
+
+
+
+