refactor(form): enhanced form customization and dynamic capabilities

This commit is contained in:
vben
2020-11-13 00:42:52 +08:00
parent 3f78b5aa0c
commit 1d45617e4a
14 changed files with 364 additions and 39 deletions

View File

@@ -38,10 +38,10 @@ const menu: MenuModule = {
path: 'strength-meter',
name: '密码强度组件',
},
{
path: 'upload',
name: '上传组件',
},
// {
// path: 'upload',
// name: '上传组件',
// },
{
path: 'scroll',
name: '滚动组件',

View File

@@ -4,10 +4,18 @@ const menu: MenuModule = {
menu: {
path: '/form',
name: 'Form',
tag: {
type: 'warn',
dot: true,
},
children: [
{
path: 'basic',
name: '基础表单',
tag: {
type: 'warn',
content: 'updated',
},
},
{
path: 'useForm',
@@ -24,14 +32,26 @@ const menu: MenuModule = {
{
path: 'ruleForm',
name: '表单校验',
tag: {
type: 'warn',
content: 'updated',
},
},
{
path: 'dynamicForm',
name: '动态表单',
tag: {
type: 'warn',
content: 'updated',
},
},
{
path: 'customerForm',
name: '自定义组件',
tag: {
type: 'warn',
content: 'updated',
},
},
],
},