From 36a3afb0980655324fffc0f758b630ba08e2687f Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 3 Oct 2017 22:25:52 -0400 Subject: [PATCH] chore: fix warning space --- src/core/instance/proxy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/instance/proxy.js b/src/core/instance/proxy.js index 2e45f4636a1..51c880f3e0a 100644 --- a/src/core/instance/proxy.js +++ b/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 )