svelte/test/validator/samples/method-quoted/input.html

10 lines
132 B

<button on:click='foo()'></button>
<script>
export default {
methods: {
'foo': () => {},
'bar': () => {}
}
};
</script>