@truenewx/tnxvue3 3.0.0-alpha.29 → 3.0.0-alpha.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truenewx/tnxvue3",
3
- "version": "3.0.0-alpha.29",
3
+ "version": "3.0.0-alpha.30",
4
4
  "description": "互联网技术解决方案:Vue3扩展支持",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -24,7 +24,7 @@
24
24
  "vue-router": "~4.4.0"
25
25
  },
26
26
  "dependencies": {
27
- "@truenewx/tnxcore": "3.0.0-alpha.16",
27
+ "@truenewx/tnxcore": "3.0.0-alpha.17",
28
28
  "@element-plus/icons-vue": "2.3.1",
29
29
  "async-validator": "4.2.5",
30
30
  "mitt": "3.0.1"
@@ -144,6 +144,9 @@ export default {
144
144
  granted() {
145
145
  this.init();
146
146
  },
147
+ disabled() {
148
+ this.init();
149
+ },
147
150
  dropdown() {
148
151
  this.buildDropdownItems();
149
152
  },
@@ -60,7 +60,7 @@ export default {
60
60
  }
61
61
  },
62
62
  mounted() {
63
- if (typeof this.$route.meta.isHistory === 'function') {
63
+ if (this.$route && this.$route.meta && typeof this.$route.meta.isHistory === 'function') {
64
64
  let cache = this.getCache();
65
65
  if (cache) {
66
66
  let vm = this;
@@ -881,3 +881,8 @@ i svg {
881
881
  .el-input-group__prepend .el-select .select-trigger .el-input {
882
882
  height: 100%;
883
883
  }
884
+
885
+ .el-message-box__message {
886
+ word-break: break-all;
887
+ overflow-wrap: break-word;
888
+ }