We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c93a734 commit e5778d7Copy full SHA for e5778d7
docs/en/essentials/passing-props.md
@@ -4,7 +4,7 @@ Using `$route` in your component creates a tight coupling with the route which l
4
5
To decouple this component from the router use option `props`:
6
7
-**❌ Coupled to `$route`**
+**Instead of coupling to `$route`:**
8
9
``` js
10
const User = {
@@ -17,7 +17,7 @@ const router = new VueRouter({
17
})
18
```
19
20
-**👍 Decoupled with `props`**
+**Decouple it by using `props`**
21
22
23
0 commit comments