Skip to content

Commit

Permalink
docs(ja): translate internals-glossary/$nuxt (#1229)
Browse files Browse the repository at this point in the history
* docs(ja): translate internals-glossary/nuxt

* Update content/ja/guides/internals-glossary/$nuxt.md

Co-authored-by: INOUE Takuya <inouetakuya5@gmail.com>

* Update content/ja/guides/internals-glossary/$nuxt.md

Co-authored-by: INOUE Takuya <inouetakuya5@gmail.com>

Co-authored-by: INOUE Takuya <inouetakuya5@gmail.com>
  • Loading branch information
2 people authored and ImgBotApp committed Jan 10, 2023
1 parent b41d089 commit 985aaa0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions content/ja/guides/internals-glossary/$nuxt.md
Original file line number Diff line number Diff line change
@@ -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]
<template>
<div>
<div v-if="$nuxt.isOffline">You are offline</div>
<div v-if="$nuxt.isOffline">オフラインです</div>
<nuxt />
</div>
</template>
```

## Refreshing page data
## ページデータのリフレッシュ

- `refresh()`
- When you want to only refresh the data provided by asyncData or fetch
- asyncData または fetch が提供するデータのみをリフレッシュしたいとき

```html{}[example.vue]
<template>
Expand All @@ -53,10 +53,10 @@ For more info on the Nuxt.js helper check out the [context and helpers chapter i
</script>
```

## Controlling the loading bar
## ローディングバーの制御

- `$loading`
- When you want to control Nuxt's loading bar programmatically
- Nuxt のローディングバーをプログラムで制御したいとき

```js{}[]
export default {
Expand Down

0 comments on commit 985aaa0

Please sign in to comment.