vue2-client 1.8.101 → 1.8.102

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,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.8.102 -2024-3-14 @张振宇**
5
+ - microapp环境下使用 replace 跳转路由
6
+
4
7
  **1.8.101 -2024-3-14 @江超**
5
8
  - 已解决:XTable显示来自配置中心的字典徽标
6
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.101",
3
+ "version": "1.8.102",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
package/src/App.vue CHANGED
@@ -101,7 +101,7 @@ export default {
101
101
  }
102
102
  })
103
103
  console.log('microApp', window.microApp)
104
- this.$router.push({ path: baseApp })
104
+ this.$router.replace({ path: baseApp })
105
105
  }
106
106
  },
107
107
  setLanguage (lang) {