Skip to content

line 250 & line 275 #694

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 2 commits into from
Feb 4, 2018
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions src/v2/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ updated: 2018-01-30
Vue.nextTick(function () {
// DOM が更新されています
})

// promise での使用法 (2.1.0 以上、下記の注記を参照してください)
Vue.nextTick()
.then(function () {
Expand All @@ -257,7 +257,7 @@ updated: 2018-01-30

オブジェクトにプロパティを設定します。オブジェクトがリアクティブの場合、プロパティがリアクティブプロパティとして作成されることを保証し、View 更新をトリガします。これは主に Vue がプロパティの追加を検知できないという制約を回避するために使われます。

**オブジェクトは Vue インスタンス、または Vue インスタンスのルートな data オブジェクトにできないことに注意してください。**
<p class="tip">オブジェクトは Vue インスタンス、または Vue インスタンスのルートな data オブジェクトにできません。</p>

- **参照:** [リアクティブの探求](../guide/reactivity.html)

Expand Down