16 lines
266 B
Svelte
16 lines
266 B
Svelte
|
<script>
|
||
|
import { inputs } from './stores.js';
|
||
|
export let filename="";
|
||
|
export let index;
|
||
|
|
||
|
function remove() {
|
||
|
$inputs.splice(index, 1);
|
||
|
$inputs = $inputs;
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<div>
|
||
|
<input bind:value={filename} />
|
||
|
<button on:click={remove}>Remove</button>
|
||
|
</div>
|