.add('Multiple actions, object', () => ({
   template:
     '<my-button :handle-click="click" :handle-dblclick="doubleclick">(Double) click me to log the action</my-button>',
   methods: actions({ click: 'clicked', doubleclick: 'double clicked' }),
 }))
 .add('Multiple actions', () => ({
   template:
     '<my-button :handle-click="click" :handle-dblclick="doubleclick">(Double) click me to log the action</my-button>',
   methods: actions('click', 'doubleclick'),
 }))
 view: () => (
   <Button {...actions({ onclick: 'clicked', ondblclick: 'double clicked' })}>
     (Double) click me to log the action
   </Button>
 ),
 view: () => (
   <Button {...actions('onclick', 'ondblclick')}>(Double) click me to log the action</Button>
 ),
 .add('Multiple actions, object', () => (
   <Button {...actions({ onclick: 'click', ondblclick: 'double-click' })}>
     (Double) click me to log the action
   </Button>
 ))
 .add('Multiple actions', () => (
   <Button {...actions('onclick', 'ondblclick')}>(Double) click me to log the action</Button>
 ))