@yoooloo42/joker 1.0.39 → 1.0.41
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.cjs.js +6 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -40138,6 +40138,10 @@ var script$e = {
|
|
|
40138
40138
|
props: ["scopeThis", "myProps", "dataBox"],
|
|
40139
40139
|
setup(__props) {
|
|
40140
40140
|
|
|
40141
|
+
const props = __props;
|
|
40142
|
+
|
|
40143
|
+
console.log('测试 333', props.myProps.menu);
|
|
40144
|
+
|
|
40141
40145
|
const style = reactive({
|
|
40142
40146
|
collapse: computed(() => styleModule.collapse()),
|
|
40143
40147
|
field_box: computed(() => styleModule.field_box()),
|
|
@@ -40155,7 +40159,7 @@ return (_ctx, _cache) => {
|
|
|
40155
40159
|
|
|
40156
40160
|
return (openBlock(), createElementBlock(Fragment, null, [
|
|
40157
40161
|
createCommentVNode(" 置顶菜单 "),
|
|
40158
|
-
(__props.myProps.menu)
|
|
40162
|
+
(__props.myProps.menu && __props.myProps.menu.length > 0)
|
|
40159
40163
|
? (openBlock(), createBlock(_component_ly0Menu, {
|
|
40160
40164
|
key: 0,
|
|
40161
40165
|
scopeThis: __props.scopeThis,
|
|
@@ -40429,6 +40433,7 @@ var script$c = {
|
|
|
40429
40433
|
|
|
40430
40434
|
console.log('测试 000', ly0default$1.myProps);
|
|
40431
40435
|
console.log('测试 111', this.myProps);
|
|
40436
|
+
console.log('测试 222', Object.assign({}, ly0default$1.myProps, this.myProps));
|
|
40432
40437
|
|
|
40433
40438
|
return Object.assign({}, ly0default$1.myProps, this.myProps)
|
|
40434
40439
|
}
|