vue2-client 1.9.93 → 1.9.95

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": "vue2-client",
3
- "version": "1.9.93",
3
+ "version": "1.9.95",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -101,6 +101,9 @@ export default {
101
101
  },
102
102
  setForm (form) {
103
103
  this.$refs.nativeForm.setForm(form)
104
+ },
105
+ setFormWithKey (form) {
106
+ this.$refs.nativeForm.setFormWithKey(form)
104
107
  }
105
108
  }
106
109
  }
@@ -127,12 +127,10 @@ import { mapState } from 'vuex'
127
127
  import XTreePro from '@vue2-client/base-client/components/common/XTree/XTreePro.vue'
128
128
  import { executeStrFunctionByContext } from '@vue2-client/utils/runEvalFunction'
129
129
  import util, { getRealKeyData } from '@vue2-client/utils/util'
130
- import XAddNativeForm from '@/base-client/components/common/XAddNativeForm/XAddNativeForm.vue'
131
130
 
132
131
  export default {
133
132
  name: 'XFormTable',
134
133
  components: {
135
- XAddNativeForm,
136
134
  XTreePro,
137
135
  XTable,
138
136
  XForm,