Skip to content

Commit

Permalink
chore: fix some legacy doc urls in warnings and readme (#12725) [ci s…
Browse files Browse the repository at this point in the history
…kip]
  • Loading branch information
Justineo committed Aug 18, 2022
1 parent 2263948 commit 9eb8ea5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/core/instance/proxy.ts
Expand Up @@ -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
)
}
Expand All @@ -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
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/instance/state.ts
Expand Up @@ -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
)
}
Expand Down

0 comments on commit 9eb8ea5

Please sign in to comment.