Browse Source

chore: fix warning space

Evan You 8 years ago
parent
commit
2431d3d743
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/instance/proxy.js

+ 2 - 2
src/core/instance/proxy.js

@@ -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
     )