mirror of https://github.com/sveltejs/svelte
20 lines
322 B
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> |