tianheng-ui 0.0.105 → 0.1.1

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": "tianheng-ui",
3
3
  "description": "A Vue.js project",
4
- "version": "0.0.105",
4
+ "version": "0.1.1",
5
5
  "author": "shu lang <403732931@qq.com>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -74,6 +74,7 @@ export default {
74
74
  watch: {
75
75
  fields: {
76
76
  handler(val, oldVal) {
77
+ console.log("watch fields =>", val);
77
78
  if (oldVal.length === 0) {
78
79
  this.initConfig();
79
80
  }
@@ -81,10 +82,12 @@ export default {
81
82
  deep: true
82
83
  },
83
84
  config(val) {
85
+ console.log("watch config =>", val);
84
86
  this.initConfig();
85
87
  }
86
88
  },
87
89
  mounted() {
90
+ console.log("mounted =>", this.config, this.fields);
88
91
  this.initConfig();
89
92
  },
90
93
  methods: {