mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.1 KiB
68 lines
1.1 KiB
7 years ago
|
/* generated by Svelte vX.Y.Z */
|
||
6 years ago
|
import {
|
||
6 years ago
|
SvelteComponent,
|
||
5 years ago
|
attr,
|
||
6 years ago
|
detach,
|
||
|
element,
|
||
|
init,
|
||
|
insert,
|
||
|
noop,
|
||
|
safe_not_equal,
|
||
6 years ago
|
space
|
||
6 years ago
|
} from "svelte/internal";
|
||
7 years ago
|
|
||
6 years ago
|
function create_fragment(ctx) {
|
||
6 years ago
|
var div0, t, div1;
|
||
7 years ago
|
|
||
|
return {
|
||
7 years ago
|
c() {
|
||
6 years ago
|
div0 = element("div");
|
||
6 years ago
|
t = space();
|
||
6 years ago
|
div1 = element("div");
|
||
5 years ago
|
attr(div0, "data-foo", "bar");
|
||
|
attr(div1, "data-foo", ctx.bar);
|
||
7 years ago
|
},
|
||
|
|
||
7 years ago
|
m(target, anchor) {
|
||
6 years ago
|
insert(target, div0, anchor);
|
||
6 years ago
|
insert(target, t, anchor);
|
||
6 years ago
|
insert(target, div1, anchor);
|
||
7 years ago
|
},
|
||
|
|
||
7 years ago
|
p(changed, ctx) {
|
||
7 years ago
|
if (changed.bar) {
|
||
5 years ago
|
attr(div1, "data-foo", ctx.bar);
|
||
7 years ago
|
}
|
||
|
},
|
||
|
|
||
6 years ago
|
i: noop,
|
||
|
o: noop,
|
||
6 years ago
|
|
||
6 years ago
|
d(detaching) {
|
||
|
if (detaching) {
|
||
|
detach(div0);
|
||
|
detach(t);
|
||
|
detach(div1);
|
||
7 years ago
|
}
|
||
|
}
|
||
7 years ago
|
};
|
||
|
}
|
||
|
|
||
6 years ago
|
function instance($$self, $$props, $$invalidate) {
|
||
6 years ago
|
let { bar } = $$props;
|
||
|
|
||
6 years ago
|
$$self.$set = $$props => {
|
||
6 years ago
|
if ('bar' in $$props) $$invalidate('bar', bar = $$props.bar);
|
||
6 years ago
|
};
|
||
6 years ago
|
|
||
|
return { bar };
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
class Component extends SvelteComponent {
|
||
6 years ago
|
constructor(options) {
|
||
|
super();
|
||
6 years ago
|
init(this, options, instance, create_fragment, safe_not_equal, ["bar"]);
|
||
6 years ago
|
}
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
export default Component;
|