acdr-ui/dist/dev/mp-weixin/sheep/ui/su-switch/su-switch.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-09-19 07:20:14 +08:00
"use strict";
const common_vendor = require("../../../common/vendor.js");
const __default__ = {
name: "UiSwitch"
};
const _sfc_main = /* @__PURE__ */ Object.assign(__default__, {
props: {
modelValue: {
type: [Boolean, Number],
default: false
},
ui: {
type: String,
default: ""
},
bg: {
type: String,
default: "ui-BG-Main"
},
text: {
type: String,
default: ""
},
size: {
type: String,
default: "sm"
},
disabled: {
type: Boolean,
default: false
}
},
emits: ["update:modelValue"],
setup(__props, { emit: __emit }) {
const props = __props;
const emits = __emit;
const change = () => {
emits("update:modelValue", !props.modelValue);
};
return (_ctx, _cache) => {
return {
a: common_vendor.n({
"ui-switch-input-checked": props.modelValue
}),
b: common_vendor.n(props.modelValue ? props.bg : ""),
c: common_vendor.n(props.text),
d: common_vendor.n(props.size),
e: common_vendor.o(change),
f: common_vendor.n({
disabled: props.disabled
}),
g: common_vendor.n(props.ui)
};
};
}
});
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4c3745b"]]);
wx.createComponent(Component);
//# sourceMappingURL=su-switch.js.map