zydx-plus 1.32.279 → 1.32.280

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": "zydx-plus",
3
- "version": "1.32.279",
3
+ "version": "1.32.280",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -253,8 +253,8 @@ export default {
253
253
  // 强制监听data变化
254
254
  data: {
255
255
  handler: function (e, oldVal) {
256
- this.editor?.commands.setContent(json2html({node: "root", child: (e.html === undefined || null) ? [] : e.html}))
257
- this.uploadAttData = (e.enclosure === undefined) ? [] : this.enclosureAction(e.enclosure)
256
+ this.editor?.commands.setContent(json2html({node: "root", child: (e.html === undefined || e.html === null) ? [] : e.html}))
257
+ this.uploadAttData = (e.enclosure === undefined || e.enclosure === null) ? [] : this.enclosureAction(e.enclosure)
258
258
  },
259
259
  deep: true
260
260
  },
package/src/index.js CHANGED
@@ -79,7 +79,7 @@ function install(app) {
79
79
  }
80
80
 
81
81
  export default {
82
- version: '1.32.279',
82
+ version: '1.32.280',
83
83
  install,
84
84
  Calendar,
85
85
  Message,