修复运行异常

This commit is contained in:
zqm
2025-12-29 09:05:37 +08:00
parent 09e4076635
commit 9aad6ebc21
10 changed files with 448 additions and 281 deletions

View File

@@ -149,6 +149,11 @@ const props = defineProps({
type: String,
default: 'top',
validator: (value) => ['top', 'right', 'bottom', 'left'].includes(value)
},
// 子组件配置,支持数组或单个对象
children: {
type: [Array, Object],
default: null
}
})