vue2-client 1.6.20 → 1.6.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.6.20 -2023-03-29 @江超**
4
+ **1.6.20 - 1.6.21 -2023-03-29 @江超**
5
5
  - AdminHeader的HeaderSearch和HeaderNotice组件现在可以动态替换了
6
6
  - setting.config.js增加自定义组件配置参数:customizeComponent
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.6.20",
3
+ "version": "1.6.21",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -51,7 +51,7 @@ const loadComponents = (value) => {
51
51
  for (const item in component) {
52
52
  const path = value[item]
53
53
  if (path) {
54
- component[item] = import(`@/${path}`)
54
+ component[item] = import(`@/layouts/header/${path}`)
55
55
  }
56
56
  }
57
57
  return component