[Fix][UI][V1.0.0-Beta] Fix the problem of packing failure. (#9966)

This commit is contained in:
Amy0104 2022-05-10 14:10:46 +08:00 committed by GitHub
parent 2d36449444
commit 7cd2f1df15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 9 deletions

View File

@ -15,14 +15,7 @@
* limitations under the License.
*/
import { Ref } from 'vue'
import type {
GridProps,
FormProps,
FormItemRule,
FormRules,
SelectOption,
TreeSelectOption
} from 'naive-ui'
import type { GridProps, FormProps, FormItemRule, FormRules } from 'naive-ui'
type IType =
| 'input'
@ -38,7 +31,9 @@ type IType =
| 'custom'
| 'multi-condition'
type IOption = SelectOption | TreeSelectOption
interface IOption {
[key: string]: any
}
interface IFormItem {
showLabel?: boolean