Skip to content

Commit 751d838

Browse files
committed
fix(runtime-core): should not warn unused attrs when accessed via setup context
close #625
1 parent c35fea3 commit 751d838

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

packages/runtime-core/__tests__/rendererAttrsFallthrough.spec.ts

+24
Original file line numberDiff line numberDiff line change
@@ -326,4 +326,28 @@ describe('attribute fallthrough', () => {
326326
`<!----><div></div><div class="parent"></div><!---->`
327327
)
328328
})
329+
330+
it('should not warn when context.attrs is used during render', () => {
331+
const Parent = {
332+
render() {
333+
return h(Child, { foo: 1, class: 'parent' })
334+
}
335+
}
336+
337+
const Child = defineComponent({
338+
props: ['foo'],
339+
setup(_props, { attrs }) {
340+
return () => [h('div'), h('div', attrs)]
341+
}
342+
})
343+
344+
const root = document.createElement('div')
345+
document.body.appendChild(root)
346+
render(h(Parent), root)
347+
348+
expect(`Extraneous non-props attributes`).not.toHaveBeenWarned()
349+
expect(root.innerHTML).toBe(
350+
`<!----><div></div><div class="parent"></div><!---->`
351+
)
352+
})
329353
})

packages/runtime-core/src/component.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ import {
2828
} from '@vue/shared'
2929
import { SuspenseBoundary } from './components/Suspense'
3030
import { CompilerOptions } from '@vue/compiler-core'
31-
import { currentRenderingInstance } from './componentRenderUtils'
31+
import {
32+
currentRenderingInstance,
33+
markAttrsAccessed
34+
} from './componentRenderUtils'
3235

3336
export type Data = { [key: string]: unknown }
3437

@@ -428,7 +431,12 @@ export const SetupProxySymbol = Symbol()
428431
const SetupProxyHandlers: { [key: string]: ProxyHandler<any> } = {}
429432
;['attrs', 'slots'].forEach((type: string) => {
430433
SetupProxyHandlers[type] = {
431-
get: (instance, key) => instance[type][key],
434+
get: (instance, key) => {
435+
if (__DEV__) {
436+
markAttrsAccessed()
437+
}
438+
return instance[type][key]
439+
},
432440
has: (instance, key) => key === SetupProxySymbol || key in instance[type],
433441
ownKeys: instance => Reflect.ownKeys(instance[type]),
434442
// this is necessary for ownKeys to work properly

0 commit comments

Comments
 (0)