ninemoon-ui 0.0.1
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/README.md +10 -0
- package/dist/badge.css +27 -0
- package/dist/carousel.css +13 -0
- package/dist/checkgroup.css +41 -0
- package/dist/components/alert/alert.d.ts +11 -0
- package/dist/components/alert/alertcomponent.vue.d.ts +12 -0
- package/dist/components/badge/badge.vue.d.ts +38 -0
- package/dist/components/carousel/carousel.vue.d.ts +10 -0
- package/dist/components/carousel/carouselitem.vue.d.ts +9 -0
- package/dist/components/check/checkbox.vue.d.ts +25 -0
- package/dist/components/check/checkgroup.vue.d.ts +25 -0
- package/dist/components/date/datepicker.vue.d.ts +21 -0
- package/dist/components/date/datepickerRange.vue.d.ts +14 -0
- package/dist/components/date/getcalendar.d.ts +11 -0
- package/dist/components/dialog/dialog.vue.d.ts +79 -0
- package/dist/components/form/form.vue.d.ts +54 -0
- package/dist/components/form/formlabel.vue.d.ts +44 -0
- package/dist/components/image/image.vue.d.ts +38 -0
- package/dist/components/input/input.vue.d.ts +65 -0
- package/dist/components/loadding/loadcomponent.vue.d.ts +5 -0
- package/dist/components/loadding/loadding.d.ts +22 -0
- package/dist/components/menu/menu.vue.d.ts +14 -0
- package/dist/components/message/message.d.ts +18 -0
- package/dist/components/message/messagecomponent.vue.d.ts +17 -0
- package/dist/components/numberInput/numberinput.vue.d.ts +64 -0
- package/dist/components/pagination/pagination.vue.d.ts +31 -0
- package/dist/components/popover/popover.vue.d.ts +59 -0
- package/dist/components/radio/radiobox.vue.d.ts +25 -0
- package/dist/components/radio/radiogroup.vue.d.ts +25 -0
- package/dist/components/scrollBar/movebar.vue.d.ts +38 -0
- package/dist/components/scrollBar/scrollBar.vue.d.ts +48 -0
- package/dist/components/scrollloading/scrolllead.d.ts +20 -0
- package/dist/components/select/select.vue.d.ts +43 -0
- package/dist/components/select/selectoption.vue.d.ts +25 -0
- package/dist/components/switch/switch.vue.d.ts +49 -0
- package/dist/components/table/table.vue.d.ts +61 -0
- package/dist/components/table/tableItem.vue.d.ts +66 -0
- package/dist/components/tabs/tabs.vue.d.ts +30 -0
- package/dist/components/tabs/tabsPane.vue.d.ts +19 -0
- package/dist/components/tree/tree.vue.d.ts +47 -0
- package/dist/components/upload/upload.vue.d.ts +65 -0
- package/dist/components/utils/tool.d.ts +44 -0
- package/dist/datepickerRange.css +79 -0
- package/dist/image.css +8 -0
- package/dist/index.css +816 -0
- package/dist/index.d.ts +2787 -0
- package/dist/index.es.js +37 -0
- package/dist/index.umd.js +5930 -0
- package/dist/js/badge/badge.js +46 -0
- package/dist/js/carousel/carousel.js +196 -0
- package/dist/js/carousel/carouselitem.js +16 -0
- package/dist/js/check/checkbox.js +16 -0
- package/dist/js/check/checkgroup.js +91 -0
- package/dist/js/date/datepicker.js +373 -0
- package/dist/js/date/datepickerRange.js +579 -0
- package/dist/js/dialog/dialog.js +140 -0
- package/dist/js/form/form.js +85 -0
- package/dist/js/form/formlabel.js +167 -0
- package/dist/js/getcalendar/getcalendar.js +48 -0
- package/dist/js/image/image.js +259 -0
- package/dist/js/index/index.js +801 -0
- package/dist/js/input/input.js +91 -0
- package/dist/js/menu/menu.js +58 -0
- package/dist/js/numberInput/numberinput.js +145 -0
- package/dist/js/pagination/pagination.js +259 -0
- package/dist/js/popover/popover.js +193 -0
- package/dist/js/radio/radiobox.js +16 -0
- package/dist/js/radio/radiogroup.js +99 -0
- package/dist/js/scrollBar/scrollBar.js +208 -0
- package/dist/js/select/select.js +133 -0
- package/dist/js/select/selectoption.js +16 -0
- package/dist/js/switch/switch.js +49 -0
- package/dist/js/table/table.js +203 -0
- package/dist/js/table/tableItem.js +25 -0
- package/dist/js/tabs/tabs.js +164 -0
- package/dist/js/tabs/tabsPane.js +17 -0
- package/dist/js/tree/tree.js +72 -0
- package/dist/js/tree/treeleaf.js +118 -0
- package/dist/js/upload/upload.js +108 -0
- package/dist/radiogroup.css +44 -0
- package/dist/scrollBar.css +37 -0
- package/dist/select.css +20 -0
- package/dist/tabs.css +77 -0
- package/package.json +37 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { defineComponent, ref, computed, openBlock, createElementBlock, renderSlot, withDirectives, createElementVNode, normalizeClass, toDisplayString, vShow } from "vue";
|
|
2
|
+
const _hoisted_1 = { class: "tdd-relative" };
|
|
3
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
4
|
+
__name: "badge",
|
|
5
|
+
props: {
|
|
6
|
+
value: {},
|
|
7
|
+
max: { default: 9 },
|
|
8
|
+
placement: { default: "rightTop" }
|
|
9
|
+
},
|
|
10
|
+
setup(__props) {
|
|
11
|
+
const props = __props;
|
|
12
|
+
const ClassArr = ref([]);
|
|
13
|
+
const addClass = computed(() => ClassArr.value.join(" "));
|
|
14
|
+
switch (props.placement) {
|
|
15
|
+
case "right":
|
|
16
|
+
ClassArr.value.push("EBage_right");
|
|
17
|
+
break;
|
|
18
|
+
case "rightTop":
|
|
19
|
+
default:
|
|
20
|
+
ClassArr.value.push("EBage_default");
|
|
21
|
+
break;
|
|
22
|
+
}
|
|
23
|
+
const showMark = computed(() => Number(props.value) > 0);
|
|
24
|
+
const mark = computed(() => {
|
|
25
|
+
if (Number(props.max) < Number(props.value)) {
|
|
26
|
+
return `${props.max}+`;
|
|
27
|
+
} else {
|
|
28
|
+
return `${props.value}`;
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
return (_ctx, _cache) => {
|
|
32
|
+
return openBlock(), createElementBlock("span", _hoisted_1, [
|
|
33
|
+
renderSlot(_ctx.$slots, "default"),
|
|
34
|
+
withDirectives(createElementVNode("sup", {
|
|
35
|
+
class: normalizeClass(["EBage", addClass.value])
|
|
36
|
+
}, toDisplayString(mark.value), 3), [
|
|
37
|
+
[vShow, showMark.value]
|
|
38
|
+
])
|
|
39
|
+
]);
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
const badge_vue_vue_type_style_index_0_lang = "";
|
|
44
|
+
export {
|
|
45
|
+
_sfc_main as default
|
|
46
|
+
};
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { defineComponent, useSlots, ref, computed, onMounted, watch, onUnmounted, openBlock, createElementBlock, normalizeStyle, createElementVNode, createVNode, h } from "vue";
|
|
2
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("svg", {
|
|
3
|
+
class: "tdd-w-4 tdd-h-4 tdd-fill-white tdd-inline-block",
|
|
4
|
+
viewBox: "0 0 1024 1024",
|
|
5
|
+
version: "1.1",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
"p-id": "613"
|
|
8
|
+
}, [
|
|
9
|
+
/* @__PURE__ */ createElementVNode("path", {
|
|
10
|
+
d: "M320 885.333333c-8.533333 0-17.066667-4.266667-23.466667-10.666666-12.8-12.8-10.666667-34.133333 2.133334-44.8L654.933333 512 298.666667 194.133333c-12.8-10.666667-14.933333-32-2.133334-44.8 10.666667-12.8 32-14.933333 44.8-2.133333l384 341.333333c6.4 6.4 10.666667 14.933333 10.666667 23.466667 0 8.533333-4.266667 17.066667-10.666667 23.466667l-384 341.333333c-6.4 6.4-12.8 8.533333-21.333333 8.533333z",
|
|
11
|
+
"p-id": "614"
|
|
12
|
+
})
|
|
13
|
+
], -1);
|
|
14
|
+
const _hoisted_2 = [
|
|
15
|
+
_hoisted_1
|
|
16
|
+
];
|
|
17
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("svg", {
|
|
18
|
+
class: "tdd-w-4 tdd-h-4 tdd-fill-white tdd-inline-block",
|
|
19
|
+
viewBox: "0 0 1024 1024",
|
|
20
|
+
version: "1.1",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
"p-id": "613"
|
|
23
|
+
}, [
|
|
24
|
+
/* @__PURE__ */ createElementVNode("path", {
|
|
25
|
+
d: "M320 885.333333c-8.533333 0-17.066667-4.266667-23.466667-10.666666-12.8-12.8-10.666667-34.133333 2.133334-44.8L654.933333 512 298.666667 194.133333c-12.8-10.666667-14.933333-32-2.133334-44.8 10.666667-12.8 32-14.933333 44.8-2.133333l384 341.333333c6.4 6.4 10.666667 14.933333 10.666667 23.466667 0 8.533333-4.266667 17.066667-10.666667 23.466667l-384 341.333333c-6.4 6.4-12.8 8.533333-21.333333 8.533333z",
|
|
26
|
+
"p-id": "614"
|
|
27
|
+
})
|
|
28
|
+
], -1);
|
|
29
|
+
const _hoisted_4 = [
|
|
30
|
+
_hoisted_3
|
|
31
|
+
];
|
|
32
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
33
|
+
__name: "carousel",
|
|
34
|
+
props: {
|
|
35
|
+
height: {}
|
|
36
|
+
},
|
|
37
|
+
setup(__props) {
|
|
38
|
+
const props = __props;
|
|
39
|
+
const slots = useSlots();
|
|
40
|
+
const activeIndex = ref(0);
|
|
41
|
+
const totalLen = computed(() => {
|
|
42
|
+
if (slots.default()[0].type.toString().includes("Symbol")) {
|
|
43
|
+
return slots.default()[0].children.length;
|
|
44
|
+
} else {
|
|
45
|
+
return slots.default().length;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
const renderBody = () => {
|
|
49
|
+
return slots.default().map((MySlot, d) => {
|
|
50
|
+
if (MySlot.type.toString().includes("Symbol")) {
|
|
51
|
+
return MySlot.children.map((trueSlot, i) => {
|
|
52
|
+
let between = i - activeIndex.value;
|
|
53
|
+
let transformNum = 0;
|
|
54
|
+
if (between < 0) {
|
|
55
|
+
if (between == -1) {
|
|
56
|
+
transformNum = -translatexNum.value;
|
|
57
|
+
} else {
|
|
58
|
+
transformNum = (totalLen.value + between) * translatexNum.value;
|
|
59
|
+
}
|
|
60
|
+
} else {
|
|
61
|
+
if (activeIndex.value === 0 && i == totalLen.value - 1 && totalLen.value != 1) {
|
|
62
|
+
transformNum = -translatexNum.value;
|
|
63
|
+
} else {
|
|
64
|
+
transformNum = between * translatexNum.value;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return h(
|
|
68
|
+
"div",
|
|
69
|
+
{
|
|
70
|
+
class: "carouselBody " + (activeIndex.value === i ? "tdd-z-10" : "-tdd-z-10"),
|
|
71
|
+
style: {
|
|
72
|
+
transform: `translateX(${transformNum}px)`
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
h(trueSlot)
|
|
76
|
+
);
|
|
77
|
+
});
|
|
78
|
+
} else {
|
|
79
|
+
let between = d - activeIndex.value;
|
|
80
|
+
let transformNum = 0;
|
|
81
|
+
if (between < 0) {
|
|
82
|
+
if (between == -1) {
|
|
83
|
+
transformNum = -translatexNum.value;
|
|
84
|
+
} else {
|
|
85
|
+
transformNum = (totalLen.value + between) * translatexNum.value;
|
|
86
|
+
}
|
|
87
|
+
} else {
|
|
88
|
+
if (activeIndex.value === 0 && d == totalLen.value - 1 && totalLen.value != 1) {
|
|
89
|
+
transformNum = -translatexNum.value;
|
|
90
|
+
} else {
|
|
91
|
+
transformNum = between * translatexNum.value;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
return h(
|
|
95
|
+
"div",
|
|
96
|
+
{
|
|
97
|
+
class: "carouselBody " + (activeIndex.value === d ? "tdd-z-10" : "-tdd-z-10"),
|
|
98
|
+
style: {
|
|
99
|
+
transform: `translateX(${transformNum}px)`
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
h(MySlot)
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
};
|
|
107
|
+
const body = ref();
|
|
108
|
+
const translatexNum = ref(0);
|
|
109
|
+
onMounted(() => {
|
|
110
|
+
translatexNum.value = body.value.offsetWidth;
|
|
111
|
+
});
|
|
112
|
+
const preHandle = () => {
|
|
113
|
+
if (activeIndex.value === 0) {
|
|
114
|
+
activeIndex.value = totalLen.value - 1;
|
|
115
|
+
} else {
|
|
116
|
+
activeIndex.value -= 1;
|
|
117
|
+
}
|
|
118
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
119
|
+
};
|
|
120
|
+
const nextHandle = () => {
|
|
121
|
+
if (activeIndex.value === totalLen.value - 1) {
|
|
122
|
+
activeIndex.value = 0;
|
|
123
|
+
} else {
|
|
124
|
+
activeIndex.value += 1;
|
|
125
|
+
}
|
|
126
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
127
|
+
};
|
|
128
|
+
let flagTime;
|
|
129
|
+
let animationFrame;
|
|
130
|
+
const autoAddHandle = () => {
|
|
131
|
+
if (totalLen.value === 1 || totalLen.value === 0) {
|
|
132
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
133
|
+
return;
|
|
134
|
+
}
|
|
135
|
+
let newtime = (/* @__PURE__ */ new Date()).getTime();
|
|
136
|
+
if (flagTime == null)
|
|
137
|
+
flagTime = newtime;
|
|
138
|
+
if (newtime - flagTime >= 2e3) {
|
|
139
|
+
if (activeIndex.value + 1 == totalLen.value) {
|
|
140
|
+
activeIndex.value = 0;
|
|
141
|
+
} else {
|
|
142
|
+
activeIndex.value += 1;
|
|
143
|
+
}
|
|
144
|
+
flagTime = newtime;
|
|
145
|
+
}
|
|
146
|
+
animationFrame = requestAnimationFrame(autoAddHandle);
|
|
147
|
+
};
|
|
148
|
+
const mouseEnterHandle = () => {
|
|
149
|
+
flagTime = null;
|
|
150
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
151
|
+
};
|
|
152
|
+
const mouseLeaveHandle = () => {
|
|
153
|
+
flagTime = null;
|
|
154
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
155
|
+
autoAddHandle();
|
|
156
|
+
};
|
|
157
|
+
onMounted(() => {
|
|
158
|
+
autoAddHandle();
|
|
159
|
+
});
|
|
160
|
+
watch(totalLen, () => {
|
|
161
|
+
flagTime = null;
|
|
162
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
163
|
+
autoAddHandle();
|
|
164
|
+
});
|
|
165
|
+
onUnmounted(() => {
|
|
166
|
+
flagTime = null;
|
|
167
|
+
animationFrame && cancelAnimationFrame(animationFrame);
|
|
168
|
+
});
|
|
169
|
+
return (_ctx, _cache) => {
|
|
170
|
+
return openBlock(), createElementBlock("div", {
|
|
171
|
+
onMouseleave: mouseLeaveHandle,
|
|
172
|
+
onMouseenter: mouseEnterHandle,
|
|
173
|
+
class: "tdd-relative tdd-w-full tdd-group tdd-text-center tdd-overflow-x-hidden",
|
|
174
|
+
ref_key: "body",
|
|
175
|
+
ref: body,
|
|
176
|
+
style: normalizeStyle({ height: `${props.height || 200}px` })
|
|
177
|
+
}, [
|
|
178
|
+
createElementVNode("button", {
|
|
179
|
+
onClick: preHandle,
|
|
180
|
+
type: "button",
|
|
181
|
+
class: "tdd-z-20 tdd-text-center group-hover:tdd-flex tdd-hidden tdd-items-center tdd-justify-center tdd-absolute tdd-top-1/2 tdd--translate-y-1/2 tdd-left-1 tdd-w-6 tdd-h-6 tdd-rounded-full tdd-bg-slate-300 tdd-appearance-none tdd-transform tdd-rotate-180"
|
|
182
|
+
}, _hoisted_2),
|
|
183
|
+
createElementVNode("button", {
|
|
184
|
+
onClick: nextHandle,
|
|
185
|
+
type: "button",
|
|
186
|
+
class: "tdd-z-20 tdd-text-center group-hover:tdd-flex tdd-hidden tdd-items-center tdd-justify-center tdd-absolute tdd-top-1/2 tdd--translate-y-1/2 tdd-right-1 tdd-w-6 tdd-h-6 tdd-rounded-full tdd-bg-slate-300 tdd-appearance-none"
|
|
187
|
+
}, _hoisted_4),
|
|
188
|
+
createVNode(renderBody)
|
|
189
|
+
], 36);
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
});
|
|
193
|
+
const carousel_vue_vue_type_style_index_0_lang = "";
|
|
194
|
+
export {
|
|
195
|
+
_sfc_main as default
|
|
196
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { renderSlot } from "vue";
|
|
2
|
+
const _export_sfc = (sfc, props) => {
|
|
3
|
+
const target = sfc.__vccOpts || sfc;
|
|
4
|
+
for (const [key, val] of props) {
|
|
5
|
+
target[key] = val;
|
|
6
|
+
}
|
|
7
|
+
return target;
|
|
8
|
+
};
|
|
9
|
+
const _sfc_main = {};
|
|
10
|
+
function _sfc_render(_ctx, _cache) {
|
|
11
|
+
return renderSlot(_ctx.$slots, "default");
|
|
12
|
+
}
|
|
13
|
+
const carouselitem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
14
|
+
export {
|
|
15
|
+
carouselitem as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { defineComponent, renderSlot } from "vue";
|
|
2
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3
|
+
__name: "checkbox",
|
|
4
|
+
props: {
|
|
5
|
+
label: {},
|
|
6
|
+
class: {}
|
|
7
|
+
},
|
|
8
|
+
setup(__props) {
|
|
9
|
+
return (_ctx, _cache) => {
|
|
10
|
+
return renderSlot(_ctx.$slots, "default");
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
_sfc_main as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { defineComponent, inject, useSlots, openBlock, createBlock, h, withDirectives, vModelCheckbox } from "vue";
|
|
2
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3
|
+
__name: "checkgroup",
|
|
4
|
+
props: {
|
|
5
|
+
modelValue: {},
|
|
6
|
+
showinput: { type: Boolean, default: false }
|
|
7
|
+
},
|
|
8
|
+
emits: ["update:modelValue", "change"],
|
|
9
|
+
setup(__props, { emit }) {
|
|
10
|
+
const props = __props;
|
|
11
|
+
const ParentGetChangeHandle = inject("changHandle", () => null);
|
|
12
|
+
const slots = useSlots();
|
|
13
|
+
const renderBoxs = () => {
|
|
14
|
+
return h(
|
|
15
|
+
"div",
|
|
16
|
+
{},
|
|
17
|
+
slots.default().map((MySlot) => {
|
|
18
|
+
var _a;
|
|
19
|
+
if (MySlot.type.toString().includes("Symbol")) {
|
|
20
|
+
return MySlot.children.map((trueSlot) => {
|
|
21
|
+
var _a2;
|
|
22
|
+
return h(
|
|
23
|
+
"label",
|
|
24
|
+
{
|
|
25
|
+
class: "checkGroup " + (trueSlot.props.class || "") + (props.modelValue.includes(trueSlot.props.label) ? " tdd-bg-wordblue" : "")
|
|
26
|
+
},
|
|
27
|
+
[
|
|
28
|
+
withDirectives(
|
|
29
|
+
h("input", {
|
|
30
|
+
type: "checkbox",
|
|
31
|
+
value: trueSlot.props.label,
|
|
32
|
+
"onUpdate:modelValue": (value) => {
|
|
33
|
+
ParentGetChangeHandle(value);
|
|
34
|
+
emit("update:modelValue", value);
|
|
35
|
+
},
|
|
36
|
+
class: "hiddeninput form-tick" + (props.showinput ? "" : " tdd-hidden")
|
|
37
|
+
}),
|
|
38
|
+
[[vModelCheckbox, props.modelValue]]
|
|
39
|
+
),
|
|
40
|
+
h(
|
|
41
|
+
"span",
|
|
42
|
+
{
|
|
43
|
+
class: "tdd-text-sm " + (props.modelValue.includes(trueSlot.props.label) ? " tdd-text-white" : " tdd-text-word6")
|
|
44
|
+
},
|
|
45
|
+
((_a2 = trueSlot.children) == null ? void 0 : _a2.default()) || trueSlot.props.label
|
|
46
|
+
)
|
|
47
|
+
]
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
} else {
|
|
51
|
+
return h(
|
|
52
|
+
"label",
|
|
53
|
+
{
|
|
54
|
+
class: "checkGroup " + (MySlot.props.class || "") + (props.modelValue.includes(MySlot.props.label) ? " tdd-bg-wordblue" : "")
|
|
55
|
+
},
|
|
56
|
+
[
|
|
57
|
+
withDirectives(
|
|
58
|
+
h("input", {
|
|
59
|
+
type: "checkbox",
|
|
60
|
+
value: MySlot.props.label,
|
|
61
|
+
"onUpdate:modelValue": (value) => {
|
|
62
|
+
ParentGetChangeHandle(value);
|
|
63
|
+
emit("update:modelValue", value);
|
|
64
|
+
},
|
|
65
|
+
class: "hiddeninput form-tick" + (props.showinput ? "" : " tdd-hidden")
|
|
66
|
+
}),
|
|
67
|
+
[[vModelCheckbox, props.modelValue]]
|
|
68
|
+
),
|
|
69
|
+
h(
|
|
70
|
+
"span",
|
|
71
|
+
{
|
|
72
|
+
class: "tdd-text-sm " + (props.modelValue.includes(MySlot.props.label) ? " tdd-text-white" : " tdd-text-word6")
|
|
73
|
+
},
|
|
74
|
+
// @ts-ignore
|
|
75
|
+
((_a = MySlot.children) == null ? void 0 : _a.default()) || MySlot.props.label
|
|
76
|
+
)
|
|
77
|
+
]
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
})
|
|
81
|
+
);
|
|
82
|
+
};
|
|
83
|
+
return (_ctx, _cache) => {
|
|
84
|
+
return openBlock(), createBlock(renderBoxs);
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
const checkgroup_vue_vue_type_style_index_0_lang = "";
|
|
89
|
+
export {
|
|
90
|
+
_sfc_main as default
|
|
91
|
+
};
|