|
|
@ -17,7 +17,7 @@ import {
|
|
|
|
function create_fragment(ctx) {
|
|
|
|
function create_fragment(ctx) {
|
|
|
|
let form;
|
|
|
|
let form;
|
|
|
|
let input;
|
|
|
|
let input;
|
|
|
|
let t;
|
|
|
|
let t0;
|
|
|
|
let button;
|
|
|
|
let button;
|
|
|
|
let dispose;
|
|
|
|
let dispose;
|
|
|
|
|
|
|
|
|
|
|
@ -25,7 +25,7 @@ function create_fragment(ctx) {
|
|
|
|
c() {
|
|
|
|
c() {
|
|
|
|
form = element("form");
|
|
|
|
form = element("form");
|
|
|
|
input = element("input");
|
|
|
|
input = element("input");
|
|
|
|
t = space();
|
|
|
|
t0 = space();
|
|
|
|
button = element("button");
|
|
|
|
button = element("button");
|
|
|
|
button.textContent = "Store";
|
|
|
|
button.textContent = "Store";
|
|
|
|
attr(input, "type", "text");
|
|
|
|
attr(input, "type", "text");
|
|
|
@ -40,7 +40,7 @@ function create_fragment(ctx) {
|
|
|
|
insert(target, form, anchor);
|
|
|
|
insert(target, form, anchor);
|
|
|
|
append(form, input);
|
|
|
|
append(form, input);
|
|
|
|
set_input_value(input, ctx.test);
|
|
|
|
set_input_value(input, ctx.test);
|
|
|
|
append(form, t);
|
|
|
|
append(form, t0);
|
|
|
|
append(form, button);
|
|
|
|
append(form, button);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
|
|
p(changed, ctx) {
|
|
|
|