mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 17:00:40 +01:00
16 lines
217 B
HTML
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> |