#Svelte
https://svelte.dev/docs#template-syntax-component-directives-bind-this
scriptでバインド用の変数を定義する。
```ts
let wordRef = null;
// 以下は本題とは関係ない
let word = "";
onMount(() => {
setTimeout(() => wordRef.focus(), 50);
});
```
templateは`bind:this`でバインドする。
```html
<textarea bind:value={word} bind:this={wordRef} />
```