Skip to content

Commit 8295f71

Browse files
committed
fix: warn slot-scope when used as a prop
1 parent dae173d commit 8295f71

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/core/instance/state.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
bind,
1919
noop,
2020
hasOwn,
21+
hyphenate,
2122
isReserved,
2223
handleError,
2324
nativeWatch,
@@ -84,9 +85,11 @@ function initProps (vm: Component, propsOptions: Object) {
8485
const value = validateProp(key, propsOptions, propsData, vm)
8586
/* istanbul ignore else */
8687
if (process.env.NODE_ENV !== 'production') {
87-
if (isReservedAttribute(key) || config.isReservedAttr(key)) {
88+
const hyphenatedKey = hyphenate(key)
89+
if (isReservedAttribute(hyphenatedKey) ||
90+
config.isReservedAttr(hyphenatedKey)) {
8891
warn(
89-
`"${key}" is a reserved attribute and cannot be used as component prop.`,
92+
`"${hyphenatedKey}" is a reserved attribute and cannot be used as component prop.`,
9093
vm
9194
)
9295
}

test/unit/features/options/props.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ describe('Options props', () => {
501501
})
502502

503503
it('warn reserved props', () => {
504-
const specialAttrs = ['key', 'ref', 'slot', 'is']
504+
const specialAttrs = ['key', 'ref', 'slot', 'is', 'slot-scope']
505505
new Vue({
506506
props: specialAttrs
507507
})

0 commit comments

Comments
 (0)