Merge "BCE-FE-1466 steps支持简单风格和icon切换" into theme/editor-20230201

This commit is contained in:
hongyang03 2023-03-09 16:39:32 +08:00 committed by iCode
commit a9d99e4ce0

View File

@ -105,7 +105,29 @@ export class StepsPlugin extends BasePlugin {
}, },
{ {
title: '外观', title: '外观',
body: [getSchemaTpl('className')] body: [
{
name: 'mode',
type: 'select',
label: '模式',
value: 'horizontal',
options: [
{
label: '水平',
value: 'horizontal'
},
{
label: '竖直',
value: 'vertical'
},
{
label: '简单',
value: 'simple'
}
]
},
getSchemaTpl('className')
]
}, },
{ {
title: '显隐', title: '显隐',