@yoooloo42/joker 1.0.87 → 1.0.88
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 +12 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +12 -12
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -23372,9 +23372,9 @@ return (_ctx, _cache) => {
|
|
|
23372
23372
|
(vue.unref(formProps).menu && vue.unref(formProps).menu.menu && vue.unref(formProps).menu.menu.length > 0)
|
|
23373
23373
|
? (vue.openBlock(), vue.createBlock(_component_ly0Menu, {
|
|
23374
23374
|
key: 0,
|
|
23375
|
-
|
|
23376
|
-
|
|
23377
|
-
}, null, 8 /* PROPS */, ["
|
|
23375
|
+
myProps: vue.unref(formProps).menu,
|
|
23376
|
+
scopeThis: vue.unref(scopeThis)
|
|
23377
|
+
}, null, 8 /* PROPS */, ["myProps", "scopeThis"]))
|
|
23378
23378
|
: vue.createCommentVNode("v-if", true),
|
|
23379
23379
|
vue.createCommentVNode(" 表单区域可以分为多个列 "),
|
|
23380
23380
|
vue.createElementVNode("div", {
|
|
@@ -23604,7 +23604,7 @@ var script$d = {
|
|
|
23604
23604
|
setup(__props) {
|
|
23605
23605
|
|
|
23606
23606
|
const props = __props;
|
|
23607
|
-
const
|
|
23607
|
+
const myProps_box = vue.ref(Object.assign({}, ly0default$1.myProps, props.myProps));
|
|
23608
23608
|
|
|
23609
23609
|
const handleRun = (
|
|
23610
23610
|
index, // 目标索引
|
|
@@ -23656,18 +23656,18 @@ return (_ctx, _cache) => {
|
|
|
23656
23656
|
const _component_el_menu = vue.resolveComponent("el-menu");
|
|
23657
23657
|
|
|
23658
23658
|
return (vue.openBlock(), vue.createBlock(_component_el_menu, {
|
|
23659
|
-
mode:
|
|
23660
|
-
"default-active":
|
|
23659
|
+
mode: myProps_box.value.mode,
|
|
23660
|
+
"default-active": myProps_box.value.defaultActive,
|
|
23661
23661
|
onOpen: handleOpen,
|
|
23662
23662
|
onClose: handleClose,
|
|
23663
23663
|
onSelect: handleSelect,
|
|
23664
|
-
"background-color":
|
|
23665
|
-
"text-color":
|
|
23666
|
-
"active-text-color":
|
|
23664
|
+
"background-color": myProps_box.value.backgroundColor,
|
|
23665
|
+
"text-color": myProps_box.value.textColor,
|
|
23666
|
+
"active-text-color": myProps_box.value.activeTextColor,
|
|
23667
23667
|
"menu-trigger": "hover",
|
|
23668
|
-
style: vue.normalizeStyle('--el-menu-horizontal-height: ' +
|
|
23669
|
-
|
|
23670
|
-
|
|
23668
|
+
style: vue.normalizeStyle('--el-menu-horizontal-height: ' + myProps_box.value.horizontalHeight + '; ' +
|
|
23669
|
+
myProps_box.value.styleBase + ' ' +
|
|
23670
|
+
myProps_box.value.style)
|
|
23671
23671
|
}, {
|
|
23672
23672
|
default: vue.withCtx(() => [
|
|
23673
23673
|
vue.createCommentVNode(" 第1层 "),
|