mirror of https://github.com/sveltejs/svelte
13 lines
308 B
13 lines
308 B
<script>
|
|
export let foo = false;
|
|
export let bar = false;
|
|
</script>
|
|
|
|
<div on:click='{() => foo = true}'>
|
|
<button class='allow-propagation'>click me</button>
|
|
</div>
|
|
|
|
<div on:click='{() => bar = true}'>
|
|
<button class='stop-propagation' on:click='{event => event.stopPropagation()}'>click me</button>
|
|
</div>
|