chore: add more links to anchor

This commit is contained in:
GU Yiling 2021-10-25 18:44:17 +08:00
parent 91676f8815
commit e6885ea599
9 changed files with 17 additions and 17 deletions

View File

@ -16,9 +16,9 @@
### 指定偏移
[`target-offset`](#props-target-offset) 来控制锚点滚动到容器何处开始处于激活状态。
[`target-offset`](#props-target-offset) 属性来控制锚点滚动到容器何处开始处于激活状态。
[`sticky-offset`](#props-sticky-offset) 来控制 `Anchor` 处于容器何处时开始吸附。
[`sticky-offset`](#props-sticky-offset) 属性来控制 `Anchor` 处于容器何处时开始吸附。
[[ demo src="/demo/anchor/offset.vue" ]]

View File

@ -82,7 +82,7 @@
| 名称 | 描述 |
| -- | -- |
| ``item`` | [^slot-item] |
| ``desc`` | 按钮的额外描述信息,作用域参数同 `item` 插槽。 |
| ``desc`` | 按钮的额外描述信息,作用域参数同 [`item`](#slots-item) 插槽。 |
^^^slot-item
按钮内文本区域。

View File

@ -70,7 +70,7 @@
| 名称 | 描述 |
| -- | -- |
| ``item`` | [^slot-item] |
| ``desc`` | 按钮的额外描述信息,作用域参数同 `item` 插槽。 |
| ``desc`` | 按钮的额外描述信息,作用域参数同 [`item`](#slots-item) 插槽。 |
^^^slot-item
选项描述文本区域。

View File

@ -93,7 +93,7 @@
| `to` | `string | Object` | 节点的导航目的地。参考 [`Link`](./link) 组件的 [`to`](./link#props) 属性。 |
| `name` | `string` | 节点的唯一标识,`name` 和 `to` 二者至少有一个存在。 |
| `disabled` | `boolean=` | 节点是否被禁用。 |
| `children` | `Array<Object>=` | 节点的子节点数组,数组项类型同 `items` 数组项。 |
| `children` | `Array<Object>=` | 节点的子节点数组,数组项类型同 [`items`](#props-items) 属性数组项。 |
+++
^^^
@ -102,14 +102,14 @@
默认内容:渲染节点对应的 `Link`
作用域参数参考 `item` 插槽。
作用域参数参考 [`item`](#slots-item) 插槽。
^^^
### 事件
| 名称 | 描述 |
| -- | -- |
| `activate` | 用户点击有 `to` 的节点触发,参数是激活节点的整个 `item` 数据。 |
| `activate` | 用户点击有 `to` 的节点触发,参数是激活节点在 [`items`](#props-items) 属性中对应的数据项。 |
| `click` | 用户点击节点时触发,参数是激活节点整个 `item` 数据。 |
### 图标

View File

@ -22,7 +22,7 @@
### 最小宽度
设置 `ui` 属性值:`simple` 来指定简单样式。
设置 [`ui`](#props-ui) 属性值:`simple` 来指定简单样式。
[[ demo src="/demo/radio-button-group/stable.vue" ]]
@ -74,7 +74,7 @@
| 名称 | 描述 |
| -- | -- |
| ``item`` | [^slot-item] |
| ``desc`` | 按钮的额外描述信息,作用域参数同 `item` 插槽。 |
| ``desc`` | 按钮的额外描述信息,作用域参数同 [`item`](#slots-item) 插槽。 |
^^^slot-item
按钮内文本区域。

View File

@ -62,7 +62,7 @@
| 名称 | 描述 |
| -- | -- |
| ``item`` | [^slot-item] |
| ``desc`` | 按钮的额外描述信息,作用域参数同 `item` 插槽。 |
| ``desc`` | 按钮的额外描述信息,作用域参数同 [`item`](#slots-item) 插槽。 |
^^^slot-item
选项描述文本区域。

View File

@ -33,9 +33,9 @@
### 自定义已选项展示
使用 `label` 插槽来自定义**下拉关闭时**已选项如何展示。
使用 [`label`](#slots-label) 插槽来自定义**下拉关闭时**已选项如何展示。
使用 `select` 插槽来自定义已选项如何展示,和下拉是否关闭无关。
使用 [`selected`](#slots-selected) 插槽来自定义已选项如何展示,和下拉是否关闭无关。
[[ demo src="/demo/select/selected.vue" ]]

View File

@ -10,7 +10,7 @@
### 步骤状态
可以通过设置 [`steps`](#props-steps) `status` 属性值定义步骤状态,若步骤出错,可设置为 `error`
可以通过设置 [`steps`](#props-steps) 属性数据项的 `status` 自动值定义步骤状态,若步骤出错,可设置为 `error`
[[ demo src="/demo/steps/status.vue" ]]

View File

@ -50,17 +50,17 @@
### 排序
使用 `order` 属性和 `order-by` 属性来指定表头上的排序状态。
使用 [`order`](#props-order) 属性和 [`order-by`](#props-order-by) 属性来指定表头上的排序状态。
监听 `sort` 事件来处理排序状态的变化。
监听 [`sort`](#events-sort) 事件来处理排序状态的变化。
设置 `allowed-orders` 属性来自定义允许的排序状态。
设置 [`allowed-orders`](#props-allowed-orders) 属性来自定义允许的排序状态。
[[ demo src="/demo/table/order.vue" ]]
### 加载状态
使用 `loading` 属性来指定表格处于加载状态。
使用 [`loading`](#props-loading) 属性来指定表格处于加载状态。
[[ demo src="/demo/table/loading.vue" ]]