fix: bugs

This commit is contained in:
xingyu4j
2025-11-07 14:09:03 +08:00
parent 9248a321fe
commit aa13d2a67c
2 changed files with 2 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ const props = defineProps({
modelValue: {
type: Object,
required: true,
default: () => ({}),
},
});

View File

@@ -272,7 +272,7 @@ defineExpose({ openDrawer }); // 暴露方法给父组件
</template>
<Condition
:ref="(el) => (conditionRef[index] = el)"
:model-value="routerGroups[index] as Record<string, any>"
:model-value="routerGroups[index]"
@update:model-value="(val) => (routerGroups[index] = val)"
/>
</Card>