Skip to content

Commit

Permalink
docs(zh-cn): review passing-data.md (#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
lxKylin authored Dec 30, 2024
1 parent a0e8454 commit 2e63219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/zh/guide/essentials/passing-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Password = {
}
```

为了测试这一点,我们需要设置 `minLength` 以及一个小于该数字的 `password`。我们可以使用 `data``props` 的挂载选项来实现。最后,我们将断言错误消息是否被渲染
为了测试这一点,我们需要设置 `minLength` 以及一个小于该数字的 `password`。我们可以使用 `data``props` 的挂载选项来实现。最后,我们将断言错误消息是否被正确渲染

```js
test('renders an error if length is too short', () => {
Expand Down Expand Up @@ -129,5 +129,5 @@ test('renders a greeting when show is true', async () => {

- 使用 `props``data` 的挂载选项预设组件的状态。
- 使用 `setProps()` 在测试期间更新属性。
-`setProps()` 前使用 await 关键字,以确保 Vue 在测试继续之前会更新 DOM。
-`setProps()` 前使用 `await` 关键字,以确保 Vue 在测试继续之前会更新 DOM。
- 直接与组件交互可以提供更大的覆盖率。考虑结合使用 `setValue``trigger` 以及 `data` 来确保一切正常工作。

0 comments on commit 2e63219

Please sign in to comment.