resolver-egretimp-plus 0.0.85 → 0.0.86

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": "resolver-egretimp-plus",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "交付体验渲染",
5
5
  "main": "./dist/web/index.js",
6
6
  "module": "./dist/web/index.js",
@@ -469,13 +469,8 @@ export default {
469
469
  }
470
470
  const config = multiPmPageMetaList.value?.[$index]?.[configIdx]
471
471
  return (
472
- <div>
473
- requiredFlag: {config.requiredFlag}
474
- {
475
- tableColumnNotRender(config) ? null :
476
- <Renderer key={`${config.columnId}-${config.rowIndex}`} class="error-tip-block" modelValue={getValue($index)} rowScope={{row, $index}} onUpdate:modelValue={(val) => { onUpdateModelValue(val, $index) }} config={config}></Renderer>
477
- }
478
- </div>
472
+ tableColumnNotRender(config) ? null :
473
+ <Renderer key={`${config.columnId}-${config.rowIndex}`} class="error-tip-block" modelValue={getValue($index)} rowScope={{row, $index}} onUpdate:modelValue={(val) => { onUpdateModelValue(val, $index) }} config={config}></Renderer>
479
474
  )
480
475
  }
481
476
  }}
@@ -113,4 +113,9 @@ const buttonAction = async (...arg) => {
113
113
  lastClick()
114
114
  }
115
115
  }
116
+ defineExpose({
117
+ click: () => {
118
+ buttonAction()
119
+ }
120
+ })
116
121
  </script>