mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 12:35:59 +00:00
13 lines
267 B
Svelte
13 lines
267 B
Svelte
<script lang="ts">
|
|
import { onMount } from 'svelte';
|
|
|
|
export let value;
|
|
export let focused = false;
|
|
|
|
let domEditor;
|
|
|
|
if (focused) onMount(() => domEditor.focus());
|
|
</script>
|
|
|
|
<textarea {...$$restProps} bind:value on:change on:input bind:this={domEditor} />
|