añado los rudimentos de form, de preview y las vinculo con una store
parent
92e2733961
commit
015172df86
@ -0,0 +1,34 @@
|
|||||||
|
<script>
|
||||||
|
import {title} from '$lib/stores/store'
|
||||||
|
|
||||||
|
const handleSubmit = async () => {
|
||||||
|
console.log("submit");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<form on:submit|preventDefault={handleSubmit}>
|
||||||
|
<label for="title">Título</label>
|
||||||
|
<input bind:value={$title} type="text" name="title" placeholder="Título">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 1rem;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-family: monospace;
|
||||||
|
padding: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: block;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,7 @@
|
|||||||
|
<script>
|
||||||
|
import {title} from '$lib/stores/store'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="preview">
|
||||||
|
{$title}
|
||||||
|
</div>
|
@ -0,0 +1,3 @@
|
|||||||
|
import {writable} from 'svelte/store'
|
||||||
|
|
||||||
|
export const title = writable("");
|
Loading…
Reference in New Issue