|
|
@@ -8,7 +8,7 @@ const t0 = _template("<div></div>")
|
|
|
export function render(_ctx) {
|
|
|
const n0 = t0()
|
|
|
const { 0: [n1],} = _children(n0)
|
|
|
- _renderEffect(() => _setText(n1, "count is " + _ctx.count + "."))
|
|
|
+ _renderEffect(() => _setText(n1, "count is ", _ctx.count, "."))
|
|
|
return n0
|
|
|
}"
|
|
|
`;
|
|
|
@@ -180,7 +180,7 @@ export function render(_ctx) {
|
|
|
const n0 = t0()
|
|
|
const n1 = _createTextNode()
|
|
|
_append(n0, n1)
|
|
|
- _renderEffect(() => _setText(n1, "" + 1 + 2))
|
|
|
+ _renderEffect(() => _setText(n1, 1, 2))
|
|
|
return n0
|
|
|
}"
|
|
|
`;
|
|
|
@@ -194,7 +194,7 @@ export function render(_ctx) {
|
|
|
const n0 = t0()
|
|
|
const { 0: [n1],} = _children(n0)
|
|
|
_on(n1, "click", () => _ctx.handleClick)
|
|
|
- _renderEffect(() => _setText(n1, _ctx.count + "foo" + _ctx.count + "foo" + _ctx.count))
|
|
|
+ _renderEffect(() => _setText(n1, _ctx.count, "foo", _ctx.count, "foo", _ctx.count))
|
|
|
_renderEffect(() => _setDynamicProp(n1, "id", _ctx.count))
|
|
|
return n0
|
|
|
}"
|
|
|
@@ -243,7 +243,7 @@ export function render(_ctx) {
|
|
|
const n0 = t0()
|
|
|
const n1 = _createTextNode()
|
|
|
_append(n0, n1)
|
|
|
- _renderEffect(() => _setText(n1, "" + 1 + 2 + "3" + 4 + 5 + "6" + 7 + 8 + "9" + 'A' + 'B'))
|
|
|
+ _renderEffect(() => _setText(n1, 1, 2, "3", 4, 5, "6", 7, 8, "9", 'A', 'B'))
|
|
|
return n0
|
|
|
}"
|
|
|
`;
|