mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
51 lines
993 B
JavaScript
51 lines
993 B
JavaScript
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, flush, init, noop, safe_not_equal } from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
var title_value;
|
|
|
|
document.title = title_value = "a " + ctx.custom + " title";
|
|
|
|
return {
|
|
c: noop,
|
|
m: noop,
|
|
|
|
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;
|
|
|
|
$$self.$set = $$props => {
|
|
if ('custom' in $$props) $$invalidate('custom', custom = $$props.custom);
|
|
};
|
|
|
|
return { custom };
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, create_fragment, safe_not_equal);
|
|
}
|
|
|
|
get custom() {
|
|
return this.$$.ctx.custom;
|
|
}
|
|
|
|
set custom(custom) {
|
|
this.$set({ custom });
|
|
flush();
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent; |