cloud-web-corejs 1.0.198 → 1.0.199

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,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.198",
4
+ "version": "1.0.199",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -64,13 +64,13 @@ export default {
64
64
  /* 这里不能访问方法和属性!! */
65
65
  },
66
66
  created() {
67
- this.init();
68
67
  /* 注意:子组件mounted在父组件created之后、父组件mounted之前触发,故子组件mounted需要用到的prop
69
68
  需要在父组件created中初始化!! */
70
69
  this.registerToRefList();
71
70
  this.initEventHandler();
72
71
 
73
72
  this.handleOnCreated();
73
+ this.init();
74
74
  },
75
75
 
76
76
  mounted() {
@@ -58,13 +58,12 @@ export default {
58
58
  /* 这里不能访问方法和属性!! */
59
59
  },
60
60
  created() {
61
- this.init();
62
61
  /* 注意:子组件mounted在父组件created之后、父组件mounted之前触发,故子组件mounted需要用到的prop
63
62
  需要在父组件created中初始化!! */
64
63
  this.registerToRefList();
65
64
  this.initEventHandler();
66
-
67
65
  this.handleOnCreated();
66
+ this.init();
68
67
  },
69
68
 
70
69
  mounted() {