6 lines
77 B
Svelte
6 lines
77 B
Svelte
|
<script>
|
||
|
export let filename="";
|
||
|
</script>
|
||
|
|
||
|
<input bind:value={filename} />
|