Skip to content

Commit 2431d3d

Browse files
committed
chore: fix warning space
1 parent 2b5c83a commit 2431d3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/core/instance/proxy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ if (process.env.NODE_ENV !== 'production') {
1515

1616
const warnNonPresent = (target, key) => {
1717
warn(
18-
`Property or method "${key}" is not defined on the instance but` +
18+
`Property or method "${key}" is not defined on the instance but ` +
1919
'referenced during render. Make sure that this property is reactive, ' +
2020
'either in the data option, or for class-based components, by ' +
21-
'initializing the property.' +
21+
'initializing the property. ' +
2222
'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
2323
target
2424
)

0 commit comments

Comments
 (0)