Skip to content

Translation ja docs #1317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 10, 2017
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/ja/api/component-injections.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@

現在のアクティブな [ルート](route-object.md) 。このプロパティは読み出しのみ可能かつ変更不可ですが、watch は可能です。

### Enabled Options
### 有効になるオプション

- **beforeRouteEnter**
- **beforeRouteUpdate** (2.2 で追加)
- **beforeRouteLeave**

[コンポーネント内ガード](../advanced/navigation-guards.md#incomponent-guards) をご参照ください。
4 changes: 3 additions & 1 deletion docs/ja/essentials/navigation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#### `router.push(location, onComplete?, onAbort?)`

**注意: Vue インスタンスの内部では、`$router` としてルーターインスタンスにアクセスする必要があります。従って、`this.$router.push` で呼ぶことができます。**
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

元の文には 必要がある という意図はなさそうに見えます。 $router からもアクセスできるという意味なのではないかと。


異なる URL へ遷移するときに `router.push` が使えます。このメソッドは history スタックに新しいエントリを追加します。それによってユーザーがブラウザの戻るボタンをクリックした時に前の URL に戻れるようになります。


Expand All @@ -16,7 +18,7 @@
引数は文字列のパス、もしくは、location を記述するオブジェクトが使えます。例:

``` js
// 文字列
// 文字列パス
router.push('home')

// オブジェクト
Expand Down