Skip to content

fix(runtime-core): avoid rendering plain object as VNode #12038

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: add test case
  • Loading branch information
edison1105 committed Sep 26, 2024
commit 0574815d950936d01221e1454015f6be0263fef9
9 changes: 9 additions & 0 deletions packages/runtime-core/__tests__/rendererChildren.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ test('array children -> text children', () => {
expect(inner(root)).toBe('<div>hello</div>')
})

test('plain object child', () => {
const root = nodeOps.createElement('div')
const foo = { foo: '1' }
// @ts-expect-error
render(h('div', null, [foo]), root)
expect('Invalid VNode type').not.toHaveBeenWarned()
expect(inner(root)).toBe('<div>[object Object]</div>')
})

describe('renderer: keyed children', () => {
let root: TestElement
let elm: TestElement
Expand Down