@gx-design-vue/pro-utils 0.0.10 → 0.0.11
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/index.es.js +2 -3
- package/dist/index.js +2 -3
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -215,12 +215,11 @@ function getSlotVNode(slots, props, prop = 'default') {
|
|
|
215
215
|
function getSlotsProps(data, slots, props) {
|
|
216
216
|
// @ts-ignore
|
|
217
217
|
const renderSlotsAndProps = {}(data).forEach((name) => {
|
|
218
|
-
|
|
218
|
+
// @ts-ignore
|
|
219
|
+
renderSlotsAndProps[name] = getSlotVNode(slots, props, name);
|
|
219
220
|
});
|
|
220
221
|
return renderSlotsAndProps;
|
|
221
222
|
}
|
|
222
|
-
const test = getSlotsProps([], {}, {});
|
|
223
|
-
console.log(test);
|
|
224
223
|
|
|
225
224
|
var global = {
|
|
226
225
|
videoAllowType: [
|
package/dist/index.js
CHANGED
|
@@ -219,12 +219,11 @@ function getSlotVNode(slots, props, prop = 'default') {
|
|
|
219
219
|
function getSlotsProps(data, slots, props) {
|
|
220
220
|
// @ts-ignore
|
|
221
221
|
const renderSlotsAndProps = {}(data).forEach((name) => {
|
|
222
|
-
|
|
222
|
+
// @ts-ignore
|
|
223
|
+
renderSlotsAndProps[name] = getSlotVNode(slots, props, name);
|
|
223
224
|
});
|
|
224
225
|
return renderSlotsAndProps;
|
|
225
226
|
}
|
|
226
|
-
const test = getSlotsProps([], {}, {});
|
|
227
|
-
console.log(test);
|
|
228
227
|
|
|
229
228
|
var global = {
|
|
230
229
|
videoAllowType: [
|