0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-30 17:00:40 +01:00
svelte/test/js/samples/event-handlers-custom/input.html
2017-04-08 17:41:26 -04:00

16 lines
217 B
HTML

<button on:foo='foo( bar )'>foo</button>
<script>
export default {
methods: {
foo ( bar ) {
console.log( bar );
}
},
events: {
foo ( node, callback ) {
// code goes here
}
}
};
</script>