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/inline-style-optimized/expected.js

44 lines
854 B

/* generated by Svelte vX.Y.Z */
import { assign, createElement, detachNode, init, insertNode, proto, setStyle } from "svelte/shared.js";
function create_main_fragment(component, ctx) {
var div;
return {
c() {
div = createElement("div");
setStyle(div, "color", ctx.color);
},
m(target, anchor) {
insertNode(div, target, anchor);
},
p(changed, ctx) {
if (changed.color) {
setStyle(div, "color", ctx.color);
}
},
d(detach) {
if (detach) {
detachNode(div);
}
}
};
}
function SvelteComponent(options) {
init(this, options);
this._state = assign({}, options.data);
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor, true);
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;