Skip to content

Commit e5778d7

Browse files
authored
docs(search): remove emojis
This should fix the search. There aren't emojis anywhere else, so having them removed is more consistant
1 parent c93a734 commit e5778d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/en/essentials/passing-props.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Using `$route` in your component creates a tight coupling with the route which l
44

55
To decouple this component from the router use option `props`:
66

7-
**❌ Coupled to `$route`**
7+
**Instead of coupling to `$route`:**
88

99
``` js
1010
const User = {
@@ -17,7 +17,7 @@ const router = new VueRouter({
1717
})
1818
```
1919

20-
**👍 Decoupled with `props`**
20+
**Decouple it by using `props`**
2121

2222
``` js
2323
const User = {

0 commit comments

Comments
 (0)