diff --git a/README.md b/README.md index 5a3f576d716..5eef53d3fa0 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c ## Documentation -To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vuejs.org](https://vuejs.org). +To check out [live examples](https://v2.vuejs.org/v2/examples/) and docs, visit [vuejs.org](https://v2.vuejs.org). ## Questions diff --git a/src/core/instance/proxy.ts b/src/core/instance/proxy.ts index 3543d74954a..685d9651fcc 100644 --- a/src/core/instance/proxy.ts +++ b/src/core/instance/proxy.ts @@ -19,7 +19,7 @@ if (__DEV__) { 'referenced during render. Make sure that this property is reactive, ' + 'either in the data option, or for class-based components, by ' + 'initializing the property. ' + - 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', + 'See: https://v2.vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.', target ) } @@ -29,7 +29,7 @@ if (__DEV__) { `Property "${key}" must be accessed with "$data.${key}" because ` + 'properties starting with "$" or "_" are not proxied in the Vue instance to ' + 'prevent conflicts with Vue internals. ' + - 'See: https://vuejs.org/v2/api/#data', + 'See: https://v2.vuejs.org/v2/api/#data', target ) } diff --git a/src/core/instance/state.ts b/src/core/instance/state.ts index e22ec6705fb..aedb72555c9 100644 --- a/src/core/instance/state.ts +++ b/src/core/instance/state.ts @@ -127,7 +127,7 @@ function initData(vm: Component) { __DEV__ && warn( 'data functions should return an object:\n' + - 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function', + 'https://v2.vuejs.org/v2/guide/components.html#data-Must-Be-a-Function', vm ) }