Skip to content

Commit

Permalink
docs: fix typo in code example
Browse files Browse the repository at this point in the history
  • Loading branch information
dennybiasiolli authored and cexbrayat committed Oct 13, 2023
1 parent f6f73dd commit 48bb30d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/advanced/slots.md
Expand Up @@ -122,10 +122,10 @@ import Header from './Header.vue'
test('layout full page layout', () => {
const wrapper = mount(Layout, {
slots: {
header: Header
header: Header,
main: h('div', 'Main Content'),
sidebar: { template: '<div>Sidebar</div>' },
footer: '<div>Footer</div>',
footer: '<div>Footer</div>'
}
})

Expand Down

0 comments on commit 48bb30d

Please sign in to comment.