Skip to content

Commit

Permalink
docs(search): Remove emojis from all docs
Browse files Browse the repository at this point in the history
Fix #1738
  • Loading branch information
posva committed Oct 24, 2017
1 parent e2f0a11 commit 9eecbd9
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/es/SUMMARY.md
Expand Up @@ -38,4 +38,4 @@
- [El objeto Route](api/route-object.md)
- [Inyección en componentes](api/component-injections.md)
- [router-link](api/router-link.md)
- [router-view](api/router-view.md)
- [router-view](api/router-view.md)
2 changes: 1 addition & 1 deletion docs/es/advanced/lazy-loading.md
Expand Up @@ -41,4 +41,4 @@ const Bar = r => require.ensure([], () => r(require('./Bar.vue')), 'group-foo')
const Baz = r => require.ensure([], () => r(require('./Baz.vue')), 'group-foo')
```

Webpack agrupará los módulos asíncronos con el mismo nombre dentro de la misma porción asíncrona - esto también significa que no necesitamos más listar explícitamente las dependencias de `require.ensure` (por lo tanto pasamos un array vacío).
Webpack agrupará los módulos asíncronos con el mismo nombre dentro de la misma porción asíncrona - esto también significa que no necesitamos más listar explícitamente las dependencias de `require.ensure` (por lo tanto pasamos un array vacío).
4 changes: 2 additions & 2 deletions docs/es/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@ Usar `$route` en tu componente genera un acoplamiento estrecho con la ruta, lo c

Para desacoplar el componente del enrutador utiliza _props_:

** Acoplado a $route**
** Acoplado a $route**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 Desacoplado con props**
** Desacoplado con props**

``` js
const User = {
Expand Down
4 changes: 2 additions & 2 deletions docs/fr/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@ Utiliser `$route` dans vos composants crée un couplage fort à la route qui va

Pour découpler un composant de son routeur, utilisez les props :

** Couplé avec `$route`**
** Couplé avec `$route`**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 Découplé avec les `props`**
** Découplé avec les `props`**

``` js
const User = {
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@

コンポーネントをルーターから分離するために `props` オプションを使います:

** `$route` に結合**
** `$route` に結合**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 `props` による分離**
** `props` による分離**

``` js
const User = {
Expand Down
4 changes: 2 additions & 2 deletions docs/kr/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@

컴포넌트와 라우터 속성을 분리하려면 다음과 같이 하십시오.

** $route에 의존성 추가**
** $route에 의존성 추가**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 속성에 의존성 해제**
** 속성에 의존성 해제**

``` js
const User = {
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/advanced/scroll-behavior.md
Expand Up @@ -77,4 +77,4 @@ scrollBehavior (to, from, savedPosition) {
}
```

Это возможно связать с событиями из сменяющегося компонента-страниц, чтобы сделать поведение прокрутки более сочетаемым с вашими анимациями перехода между страницами, но из-за множества возможных вариантов и комплексности примеров, мы просто предоставляем этот просто пример чтобы показать где можно разместить собственную реализацию.
Это возможно связать с событиями из сменяющегося компонента-страниц, чтобы сделать поведение прокрутки более сочетаемым с вашими анимациями перехода между страницами, но из-за множества возможных вариантов и комплексности примеров, мы просто предоставляем этот просто пример чтобы показать где можно разместить собственную реализацию.
2 changes: 1 addition & 1 deletion docs/ru/api/options.md
Expand Up @@ -104,4 +104,4 @@

Контролирует, должен ли маршрутизатор возвращаться в режим `hash`, когда браузер не поддерживает `history.pushState`. По умолчанию значение `true`.

Установка этого параметра в `false` будет вызывать для каждой навигации через `router-link` полное обновление страницы в IE9. Это может быть полезным, когда приложение рендерится на стороне сервера и должно работать в IE9, потому что режим `hash` не работает с SSR.
Установка этого параметра в `false` будет вызывать для каждой навигации через `router-link` полное обновление страницы в IE9. Это может быть полезным, когда приложение рендерится на стороне сервера и должно работать в IE9, потому что режим `hash` не работает с SSR.
2 changes: 1 addition & 1 deletion docs/ru/api/router-instance.md
Expand Up @@ -85,4 +85,4 @@

- Ошибка фиксируется и асинхронно обрабатывается с помощью `next(err)` внутри функции сторожевого хука;

- Произошла ошибка при попытке разрешить асинхронный компонент, необходимый для отображения маршрута.
- Произошла ошибка при попытке разрешить асинхронный компонент, необходимый для отображения маршрута.
4 changes: 2 additions & 2 deletions docs/ru/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@

Для разделения компонента от маршрутизатора можно использовать входные данные:

** Жёсткая связь с `$route`**
** Жёсткая связь с `$route`**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 Разделение с помощью входных параметров**
** Разделение с помощью входных параметров**

``` js
const User = {
Expand Down
4 changes: 2 additions & 2 deletions docs/zh-cn/essentials/passing-props.md
Expand Up @@ -4,7 +4,7 @@

使用props将组件和路由解耦:

** 与$route耦合**
** 与$route耦合**

``` js
const User = {
Expand All @@ -17,7 +17,7 @@ const router = new VueRouter({
})
```

**👍 使用props解耦**
** 使用props解耦**

``` js
const User = {
Expand Down

0 comments on commit 9eecbd9

Please sign in to comment.