n20-common-lib 2.7.66 → 2.7.67

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": "n20-common-lib",
3
- "version": "2.7.66",
3
+ "version": "2.7.67",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -123,4 +123,4 @@
123
123
  "last 2 versions",
124
124
  "not dead"
125
125
  ]
126
- }
126
+ }
@@ -110,13 +110,17 @@ export default {
110
110
  }
111
111
  },
112
112
  data() {
113
- return {
114
- errorV: false
115
- }
113
+ return {}
116
114
  },
117
- watch: {
118
- validateDialog(val) {
119
- this.errorV = val
115
+ computed: {
116
+ errorV: {
117
+ get() {
118
+ return this.validateDialog
119
+ },
120
+ set(v) {
121
+ this.$emit('update:validateDialog', v)
122
+ return v
123
+ }
120
124
  }
121
125
  },
122
126
  methods: {