@jx3box/jx3box-common-ui 8.0.14 → 8.0.15

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": "@jx3box/jx3box-common-ui",
3
- "version": "8.0.14",
3
+ "version": "8.0.15",
4
4
  "description": "JX3BOX UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -128,6 +128,14 @@ export default {
128
128
  return this.post?.client || "std";
129
129
  },
130
130
  },
131
+ watch: {
132
+ post: {
133
+ deep: true,
134
+ handler: function(val) {
135
+ this.countWords();
136
+ },
137
+ }
138
+ },
131
139
  methods: {
132
140
  showClientLabel: function(val) {
133
141
  return __clients[val];
@@ -142,7 +150,6 @@ export default {
142
150
  }
143
151
  },
144
152
  mounted: function() {
145
- this.countWords();
146
153
  },
147
154
  };
148
155
  </script>