class: _ctx.bar.baz
}, [
toString(_ctx.world.burn()),
- (openBlock(), _ctx.ok)
+ (openBlock(), (_ctx.ok)
? createBlock(\\"div\\", { key: 0 }, \\"yes\\")
: createBlock(Fragment, { key: 1 }, [\\"no\\"])),
(openBlock(), createBlock(Fragment, null, renderList(_ctx.list, (value, index) => {
class: _ctx.bar.baz
}, [
_toString(_ctx.world.burn()),
- (openBlock(), _ctx.ok)
+ (openBlock(), (_ctx.ok)
? createBlock(\\"div\\", { key: 0 }, \\"yes\\")
: createBlock(Fragment, { key: 1 }, [\\"no\\"])),
(openBlock(), createBlock(Fragment, null, renderList(_ctx.list, (value, index) => {
const _component_Comp = resolveComponent(\\"Comp\\")
return (openBlock(), createBlock(_component_Comp, null, createSlots({ _compiled: true }, [
- _ctx.ok)
+ (_ctx.ok)
? {
name: \\"one\\",
fn: (props) => [toString(props)]
const { push, indent, deindent, newline } = context
if (test.type === NodeTypes.SIMPLE_EXPRESSION) {
const needsParens = !isSimpleIdentifier(test.content)
+ needsParens && push(`(`)
genExpression(test, context)
needsParens && push(`)`)
} else {