You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/component-event-not-stale/main.html

20 lines
322 B

<Button on:click="handleClick()">one</Button>
<Button on:click="fire('value', {value})">two</Button>
<script>
import Button from './Button.html';
export default {
components: {
Button
},
methods: {
handleClick() {
const { value } = this.get();
this.fire('value', { value });
}
}
}
</script>