mirror of https://github.com/sveltejs/svelte
48 lines
860 B
48 lines
860 B
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, flush, init, noop, run, safe_not_equal } from "svelte/internal";
|
|
import { onMount } from "svelte";
|
|
|
|
function create_fragment(component, ctx) {
|
|
var current;
|
|
|
|
return {
|
|
c: noop,
|
|
m: noop,
|
|
p: noop,
|
|
i: noop,
|
|
o: run,
|
|
d: noop
|
|
};
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
let { foo = 'bar' } = $$props;
|
|
|
|
onMount(() => {
|
|
alert(JSON.stringify(data()));
|
|
});
|
|
|
|
$$self.$set = $$props => {
|
|
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
|
|
};
|
|
|
|
return { foo };
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal);
|
|
}
|
|
|
|
get foo() {
|
|
return this.$$.ctx.foo;
|
|
}
|
|
|
|
set foo(foo) {
|
|
this.$set({ foo });
|
|
flush();
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent; |