10 lines
129 B

<button on:click='foo()'></button>
<script>
export default {
methods: {
foo: () => console.log( 'foo' )
}
};
</script>