amis2/examples/components/EventAction/SwitchEvent.jsx
2022-02-15 10:38:03 +08:00

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事件'
}
]
}
}
}
]
}
]
};