Skip to content

Commit 1e58574

Browse files
committed
fix(router-view): disable inheritAttrs
Fix #674
1 parent 034c71c commit 1e58574

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

__tests__/RouterView.spec.ts

+9
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,15 @@ describe('RouterView', () => {
293293
expect(wrapper.html()).toBe(`<div>id:foo;other:fixed</div>`)
294294
})
295295

296+
it('inherit attributes', async () => {
297+
const { wrapper } = await factory(routes.withIdAndOther, {
298+
'data-test': 'true',
299+
})
300+
expect(wrapper.html()).toBe(
301+
`<div data-test="true">id:foo;other:fixed</div>`
302+
)
303+
})
304+
296305
it('can pass a function as props', async () => {
297306
const { wrapper } = await factory(routes.withFnProps)
298307
expect(wrapper.html()).toBe(`<div>id:2;other:page</div>`)

src/RouterView.ts

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ export interface RouterViewProps {
3636

3737
export const RouterViewImpl = /*#__PURE__*/ defineComponent({
3838
name: 'RouterView',
39+
// #674 we manually inherit them
40+
inheritAttrs: false,
3941
props: {
4042
name: {
4143
type: String as PropType<string>,

0 commit comments

Comments
 (0)