!325 新增主子表、树表的代码生成

Merge pull request !325 from 芋道源码/feature/sub-table
This commit is contained in:
芋道源码
2023-11-18 09:57:33 +00:00
committed by Gitee
31 changed files with 3036 additions and 88 deletions

View File

@ -144,6 +144,8 @@ watch(
} else if (isArray(props.modelValue)) {
// 情况2字符串
files.concat(props.modelValue)
} else if (props.modelValue == null) {
// 情况3undefined 不处理
} else {
throw new Error('不支持的 modelValue 类型')
}