mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
36 lines
675 B
JavaScript
36 lines
675 B
JavaScript
export default {
|
|
type: 'page',
|
|
title: '开关组件事件',
|
|
regions: ['body', 'toolbar', 'header'],
|
|
body: [
|
|
{
|
|
type: 'tpl',
|
|
tpl: 'Switch组件',
|
|
inline: false,
|
|
wrapperComponent: 'h2'
|
|
},
|
|
{
|
|
type: 'form',
|
|
debug: true,
|
|
body: [
|
|
{
|
|
name: "switch",
|
|
type: "switch",
|
|
option: "开关事件",
|
|
onEvent: {
|
|
change: {
|
|
actions: [
|
|
{
|
|
actionType: 'toast',
|
|
msgType: 'info',
|
|
msg: '派发change事件'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|