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/after-render-triggers-update/main.svelte

15 lines
220 B

<script>
import { afterUpdate } from 'svelte';
export let a;
export let b;
export let value;
afterUpdate(() => {
b.textContent = a.textContent;
});
</script>
<p bind:this={a}>{value}</p>
<p bind:this={b}></p>