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

27 lines
568 B

5 years ago
/* generated by Svelte vX.Y.Z */
import { SvelteComponent, init, safe_not_equal } from "svelte/internal";
5 years ago
import { onMount } from "svelte";
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(0, foo = $$props.foo);
};
return [foo];
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, null, safe_not_equal, { foo: 0 });
}
}
export default Component;