resolver-egretimp-plus 0.0.203 → 0.0.204
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/dist/h5/index.js +1 -1
- package/dist/web/index.js +1 -1
- package/package.json +1 -1
- package/src/analysisComponent.jsx +2 -0
package/package.json
CHANGED
|
@@ -70,12 +70,14 @@ export default {
|
|
|
70
70
|
const messageInstance = inject('_messageInstance')
|
|
71
71
|
const builtPolyfillReq = inject('_builtPolyfillReq')
|
|
72
72
|
const rootValue = inject('rootValue')
|
|
73
|
+
const validate = inject('_validate')
|
|
73
74
|
|
|
74
75
|
const selects = inject('selects')
|
|
75
76
|
|
|
76
77
|
definePrivatelyProp(props.config, '_rootValue', rootValue)
|
|
77
78
|
definePrivatelyProp(props.config, 'router', router)
|
|
78
79
|
definePrivatelyProp(props.config, 'route', route)
|
|
80
|
+
definePrivatelyProp(props.config, '_validate', validate)
|
|
79
81
|
// 当前组件的实例
|
|
80
82
|
const instance = getCurrentInstance()
|
|
81
83
|
const appContext = instance?.appContext
|