Skip to content

Commit b25f99b

Browse files
author
Tintef
authored
[issue/627] Replace occurrences of links pointing to old docs (#631)
1 parent 6dfbcc6 commit b25f99b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/style-guide/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default {
8181
In committed code, prop definitions should always be as detailed as possible, specifying at least type(s).
8282

8383
::: details Detailed Explanation
84-
Detailed [prop definitions](https://vuejs.org/v2/guide/components.html#Prop-Validation) have two advantages:
84+
Detailed [prop definitions](/guide/component-props.html#prop-validation) have two advantages:
8585

8686
- They document the API of the component, so that it's easy to see how the component is meant to be used.
8787
- In development, Vue will warn you if a component is ever provided incorrectly formatted props, helping you catch potential sources of error.
@@ -1617,9 +1617,9 @@ app.component('TodoItem', {
16171617

16181618
**[Vuex](https://github.com/vuejs/vuex) should be preferred for global state management, instead of `this.$root` or a global event bus.**
16191619

1620-
Managing state on `this.$root` and/or using a [global event bus](https://vuejs.org/v2/guide/migration.html#dispatch-and-broadcast-replaced) can be convenient for very simple cases, but it is not appropriate for most applications.
1620+
Managing state on `this.$root` and/or using a global event bus can be convenient for very simple cases, but it is not appropriate for most applications.
16211621

1622-
Vuex is the [official flux-like implementation](https://vuejs.org/v2/guide/state-management.html#Official-Flux-Like-Implementation) for Vue, and offers not only a central place to manage state, but also tools for organizing, tracking, and debugging state changes. It integrates well in the Vue ecosystem (including full [Vue DevTools](https://vuejs.org/v2/guide/installation.html#Vue-Devtools) support).
1622+
Vuex is the [official flux-like implementation](/guide/state-management.html#official-flux-like-implementation) for Vue, and offers not only a central place to manage state, but also tools for organizing, tracking, and debugging state changes. It integrates well in the Vue ecosystem (including full [Vue DevTools](/guide/installation.html#vue-devtools) support).
16231623

16241624
<div class="style-example style-example-bad">
16251625
<h4>Bad</h4>

0 commit comments

Comments
 (0)