Skip to content

Commit

Permalink
fix: make zhlint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Justineo committed Sep 10, 2024
1 parent c398bc1 commit 06892d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/api/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -629,9 +629,9 @@ console.log(app.config)

配置此应用中通过 [useId()](/api/general#useid) 生成的所有 ID 的前缀。

- **类型:** `string`
- **类型** `string`

- **默认值:** `undefined`
- **默认值** `undefined`

- **示例**

Expand Down
4 changes: 2 additions & 2 deletions src/api/reactivity-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,15 +433,15 @@

第二个参数是在发生变化时要调用的回调函数。这个回调函数接受三个参数:新值、旧值,以及一个用于注册副作用清理的回调函数。该回调函数会在副作用下一次重新执行前调用,可以用来清除无效的副作用,例如等待中的异步请求。

当侦听多个来源时,回调函数接受两个数组,分别对应来源数组中的新值和旧值。
当侦听多个来源时,回调函数接受两个数组,分别对应来源数组中的新值和旧值。

第三个可选的参数是一个对象,支持以下这些选项:

- **`immediate`**:在侦听器创建时立即触发回调。第一次调用时旧值是 `undefined`
- **`deep`**:如果源是对象,强制深度遍历,以便在深层级变更时触发回调。在 3.5+ 中,此参数还可以是指示最大遍历深度的数字。参考[深层侦听器](/guide/essentials/watchers#deep-watchers)。
- **`flush`**:调整回调函数的刷新时机。参考[回调的刷新时机](/guide/essentials/watchers#callback-flush-timing)及 [`watchEffect()`](/api/reactivity-core#watcheffect)。
- **`onTrack / onTrigger`**:调试侦听器的依赖。参考[调试侦听器](/guide/extras/reactivity-in-depth#watcher-debugging)。
- **`once`**3.4+回调函数只会运行一次。侦听器将在回调函数首次运行后自动停止。
- **`once`**(3.4+) 回调函数只会运行一次。侦听器将在回调函数首次运行后自动停止。

与 [`watchEffect()`](#watcheffect) 相比,`watch()` 使我们可以:

Expand Down
2 changes: 1 addition & 1 deletion src/guide/components/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const AsyncComp = defineAsyncComponent({
})
```

也可以是多个事件类型的列表:
也可以是多个事件类型的列表

```js
hydrateOnInteraction(['wheel', 'mouseover'])
Expand Down

0 comments on commit 06892d5

Please sign in to comment.