8000 Guide > Composition API > Setup の翻訳を追従 by naokie · Pull Request #283 · vuejs-jp/ja.vuejs.org · GitHub
[go: up one dir, main page]

Skip to content

Guide > Composition API > Setup の翻訳を追従 #283

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 27, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
fix: translate 'render function'
  • Loading branch information
naokie committed Apr 27, 2021
commit 06875de54a12ccc0329a846a8486989d01a60288
2 changes: 1 addition & 1 deletion src/api/application-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ app.config.errorHandler = (err, vm, info) => {
}
```

コンポーネントの描画関数とウォッチャーに捕捉されなかったエラーのハンドラを割り当てます。ハンドラには、アプリケーションのインスタンスとエラーが渡されて呼び出されます。
コンポーネントの Render 関数とウォッチャに捕捉されなかったエラーのハンドラを割り当てます。ハンドラには、アプリケーションのインスタンスとエラーが渡されて呼び出されます。

> エラートラッキングサービスの [Sentry](https://sentry.io/for/vue/) ならびに [Bugsnag](https://docs.bugsnag.com/platforms/browsers/vue/) は公式に連携のためのオプションを用意しています。

Expand Down
4 changes: 2 additions & 2 deletions src/guide/custom-directive.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ directives: {
- `beforeUpdate`: 束縛された要素を含むコンポーネントの VNode が更新される前に呼ばれます。

:::tip Note
VNodes は[後で](render-function.html#the-virtual-dom-tree)詳細に扱います。描画関数を説明する時です
VNodes は[後で](render-function.html#the-virtual-dom-tree)詳細に扱います。Render 関数を説明する時です
:::

- `updated`: 束縛された要素を含むコンポーネントの VNode **とその子コンポーネントの VNode** が更新された後に呼ばれます。
Expand Down Expand Up @@ -212,7 +212,7 @@ return withDirectives(h('div'), [[vDemo, test]])

ここで `vDemo` はユーザによって記述されたディレクティブオブジェクトで、それは `mounted` や `updated` のフック関数を含みます。

`withDirectives` は複製した VNode を返します。複製された VNode は VNode のライフサイクルフック (詳細は[描画関数](render-function.html)を参照) としてラップ、注入されたユーザのフック関数を持ちます:
`withDirectives` は複製した VNode を返します。複製された VNode は VNode のライフサイクルフック (詳細は[Render 関数](render-function.html)を参照) としてラップ、注入されたユーザのフック関数を持ちます:

```js
{
Expand Down
4 changes: 2 additions & 2 deletions src/guide/migration/transition.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ v2.1.8 では `v-enter-to` トランジションクラスを導入して、 ente

`<transition>` コンポーネントの関連するプロップ名も変更されます。

- `leave-class` は `leave-from-class` に名前が変更されます。(描画関数や JSX では `leaveFromClass` と書くことができます)
- `enter-class` は `enter-from-class` に名前が変更されます。(描画関数や JSX では `leaveFromClass` と書くことができます)
- `leave-class` は `leave-from-class` に名前が変更されます。(Render 関数や JSX では `leaveFromClass` と書くことができます)
- `enter-class` は `enter-from-class` に名前が変更されます。(Render 関数や JSX では `leaveFromClass` と書くことができます)

## 移行の戦略

Expand Down
0