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/title/expected.js

38 lines
814 B

import { SvelteComponent, init, noop, safe_not_equal } from "svelte/internal";
function create_fragment(ctx) {
let title_value;
document.title = title_value = "a " + ctx.custom + " title";
return {
c: noop,
m: noop,
6 years ago
p(changed, ctx) {
if (changed.custom && title_value !== (title_value = "a " + ctx.custom + " title")) {
document.title = title_value;
}
},
i: noop,
o: noop,
d: noop
};
}
function instance($$self, $$props, $$invalidate) {
let { custom } = $$props;
6 years ago
$$self.$set = $$props => {
if ("custom" in $$props) $$invalidate("custom", custom = $$props.custom);
};
return { custom };
}
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, instance, create_fragment, safe_not_equal, ["custom"]);
}
}
export default Component;