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.
svelte/test/js/samples/deconflict-globals/expected.js

37 lines
736 B

/* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, init, noop, safe_not_equal } from "svelte/internal";
import { onMount } from "svelte";
function create_fragment(ctx) {
return {
c: noop,
m: noop,
p: noop,
i: noop,
o: noop,
d: noop
};
}
function instance($$self, $$props, $$invalidate) {
let { foo = 'bar' } = $$props;
onMount(() => {
alert(JSON.stringify(data()));
});
6 years ago
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};
return { foo };
}
class SvelteComponent extends SvelteComponent_1 {
constructor(options) {
super();
6 years ago
init(this, options, instance, create_fragment, safe_not_equal, ["foo"]);
}
}
export default SvelteComponent;