Skip to content

Commit

Permalink
chore: fix warning space
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Oct 4, 2017
1 parent 2b5c83a commit 2431d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/instance/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ if (process.env.NODE_ENV !== 'production') {

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

0 comments on commit 2431d3d

Please sign in to comment.