super-page-runtime 0.0.2-tmp2 → 0.0.2-tmp3
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.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createCommentVNode } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
3
|
import _sfc_main$1 from "./super-page.vue.js";
|
|
4
|
-
const showContent = true;
|
|
5
4
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
5
|
__name: "super-page-dialog",
|
|
7
6
|
props: {
|
|
@@ -14,6 +13,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
14
13
|
setup(__props, { emit: __emit }) {
|
|
15
14
|
const props = __props;
|
|
16
15
|
const emits = __emit;
|
|
16
|
+
const showContent = ref(true);
|
|
17
17
|
const myJumpPageSetting = props.jumpPageSetting ? props.jumpPageSetting : null;
|
|
18
18
|
const width = ref(null);
|
|
19
19
|
const title = ref(null);
|
|
@@ -47,8 +47,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
47
47
|
return (_ctx, _cache) => {
|
|
48
48
|
const _component_el_drawer = resolveComponent("el-drawer");
|
|
49
49
|
return openBlock(), createBlock(_component_el_drawer, {
|
|
50
|
-
modelValue: showContent,
|
|
51
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showContent = $event),
|
|
50
|
+
modelValue: showContent.value,
|
|
51
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showContent.value = $event),
|
|
52
52
|
"with-header": !title.value,
|
|
53
53
|
title: title.value,
|
|
54
54
|
direction: "btt",
|
|
@@ -66,7 +66,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
66
66
|
}, null, 8, ["pageCode", "pageRequest"])) : createCommentVNode("", true)
|
|
67
67
|
]),
|
|
68
68
|
_: 1
|
|
69
|
-
}, 8, ["with-header", "title", "size"]);
|
|
69
|
+
}, 8, ["modelValue", "with-header", "title", "size"]);
|
|
70
70
|
};
|
|
71
71
|
}
|
|
72
72
|
});
|