From f6ca560900d7544ce4ae77379c72605d3ea38ef6 Mon Sep 17 00:00:00 2001 From: numa Date: Sun, 7 Feb 2021 20:39:23 +0900 Subject: [PATCH 1/3] docs(ja): translate internals-glossary/nuxt --- content/ja/guides/internals-glossary/$nuxt.md | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/content/ja/guides/internals-glossary/$nuxt.md b/content/ja/guides/internals-glossary/$nuxt.md index 9cb266e865..1d7ef4aec8 100644 --- a/content/ja/guides/internals-glossary/$nuxt.md +++ b/content/ja/guides/internals-glossary/$nuxt.md @@ -1,35 +1,35 @@ --- -title: '$nuxt: The Nuxt.js helper' -description: $nuxt is a helper designed to improve user experience. +title: '$nuxt: Nuxt.js のヘルパー' +description: '$nuxt はユーザーエクスペリエンスを向上するために設計されたヘルパーです。' category: internals-glossary position: 2 --- -`$nuxt` is a helper designed to improve user experience. -For more info on the Nuxt.js helper check out the [context and helpers chapter in the Concepts book](/docs/2.x/concepts/context-helpers#nuxt-the-nuxtjs-helper) +`$nuxt` はユーザーエクスペリエンスを向上するために設計されたヘルパーです。 +Nuxt.js ヘルパーの詳細については [コンテキストとヘルパーのドキュメント](/docs/2.x/concepts/context-helpers#nuxt-nuxtjs-ヘルパー)を参照してください。 -## Connection checker +## コネクションチェッカー - `isOffline` - - Type: `Boolean` - - Description: `true` when the user's internet connection becomes offline + - 型: `Boolean` + - 説明: ユーザーのインターネット接続環境がオフラインになった時に `true` - `isOnline` - - Type: `Boolean` - - Description: Opposite of `isOffline` + - 型: `Boolean` + - 説明: `isOffline` の反対でユーザーのインターネット接続環境がオンラインになった時に `true` ```html{}[layouts/default.vue] ``` -## Refreshing page data +## ページデータのリフレッシュ - `refresh()` - - When you want to only refresh the data provided by asyncData or fetch + - asyncData または fetch が提供するデータのみをリフレッシュしたい時 ```html{}[example.vue]