mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
解决 cl-switch 异常问题
This commit is contained in:
parent
01858011c9
commit
5066bd0691
@ -36,14 +36,18 @@ export default defineComponent({
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(val) => {
|
||||
// 首次获取类型
|
||||
if (activeValue.value === undefined) {
|
||||
if (isBoolean(props.modelValue)) {
|
||||
activeValue.value = true;
|
||||
inactiveValue.value = false;
|
||||
} else {
|
||||
activeValue.value = props.activeValue;
|
||||
inactiveValue.value = props.inactiveValue;
|
||||
}
|
||||
}
|
||||
|
||||
nextTick(() => {
|
||||
status.value = val;
|
||||
});
|
||||
},
|
||||
{
|
||||
immediate: true
|
||||
|
@ -13,8 +13,8 @@ export default (): Merge<ModuleConfig, CrudOptions> => {
|
||||
label: "CRUD",
|
||||
description: "快速增删改查及一系列辅助组件",
|
||||
author: "COOL",
|
||||
version: "1.0.2",
|
||||
updateTime: "2024-02-19",
|
||||
version: "1.0.3",
|
||||
updateTime: "2024-02-20",
|
||||
demo: "/demo/crud",
|
||||
|
||||
// 组件全注册
|
||||
|
Loading…
Reference in New Issue
Block a user