Skip to content
This repository has been archived by the owner on Aug 8, 2022. It is now read-only.

Commit

Permalink
docs: update space
Browse files Browse the repository at this point in the history
  • Loading branch information
veaba committed Sep 16, 2020
1 parent 768c340 commit 868604a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/api/application-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ app.directive('focus', {
上一个的虚拟 Node,仅在 `beforeUpdate``updated` 钩子中可用。
:::tip Note
除了 `el` 之外,你应该将这些参数视为只读,并且永远不要修改它们。如果你需要跨钩子共享信息,建议通过元素的[数据集] (https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset) 进行共享。
除了 `el` 之外,你应该将这些参数视为只读,并且永远不要修改它们。如果你需要跨钩子共享信息,建议通过元素的[数据集](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset)进行共享。
:::
- **参考**[自定义指令](../guide/custom-directive.html)
Expand Down
8 changes: 4 additions & 4 deletions src/api/built-in-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<component :is="$options.components.child"></component>
```

- **参考** [动态组件](../guide/component-dynamic-async.html)
- **参考**[动态组件](../guide/component-dynamic-async.html)

## transition

Expand Down Expand Up @@ -200,7 +200,7 @@
`<keep-alive>` 不会在函数式组件中正常工作,因为它们没有缓存实例。
:::

- **参考** [动态组件 - keep-alive](../guide/component-dynamic-async.html#dynamic-components-with-keep-alive)
- **参考**[动态组件 - keep-alive](../guide/component-dynamic-async.html#dynamic-components-with-keep-alive)

## slot

Expand All @@ -214,7 +214,7 @@

详细用法,请参考下面教程的链接。

- **参考** [通过插槽分发内容](../guide/component-basics.html#content-distribution-with-slots)
- **参考**[通过插槽分发内容](../guide/component-basics.html#content-distribution-with-slots)

## teleport

Expand Down Expand Up @@ -243,4 +243,4 @@

请注意,这将移动实际的 DOM 节点,而不是被销毁和重新创建,并且它还将保持任何组件实例的活动状态。所有有状态的 HTML 元素 (即播放的视频) 都将保持其状态。

- **参考** [Teleport 组件](../guide/teleport.html#teleport)
- **参考**[Teleport 组件](../guide/teleport.html#teleport)
4 changes: 2 additions & 2 deletions src/style-guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ computed: {
</li>
</ul>
```
更新为:
更新为

``` html
<ul v-if="shouldShowUsers">
Expand Down Expand Up @@ -716,7 +716,7 @@ components/
|- index.vue
```

or:
或者:

```
components/
Expand Down

0 comments on commit 868604a

Please sign in to comment.