feat: add link for individual props/events/slots/configs/icons

This commit is contained in:
Justineo
2021-10-20 01:11:27 +08:00
parent df2b6892d2
commit b0dcdbb873
162 changed files with 2176 additions and 2073 deletions

View File

@@ -10,11 +10,11 @@
| Name | Type | Default | Description |
| -- | -- | -- | -- |
| `datasource` | `Array<Object>` | `[]` | [^datasource] |
| `selected` | `Array<string>` | - | [^selected] |
| `include-indeterminate` | `boolean` | `false` | Whether to include indeterminate node into selected nodes. Non-leaf nodes inside `datasource` will be in indeterminate state if their descendant nodes are partially selected. |
| `disabled` | `boolean=` | `false` | Whether the region picker is disabled. |
| `readonly` | `boolean=` | `false` | Whether the region picker is read-only. |
| ``datasource`` | `Array<Object>` | `[]` | [^datasource] |
| ``selected`` | `Array<string>` | - | [^selected] |
| ``include-indeterminate`` | `boolean` | `false` | Whether to include indeterminate node into selected nodes. Non-leaf nodes inside `datasource` will be in indeterminate state if their descendant nodes are partially selected. |
| ``disabled`` | `boolean=` | `false` | Whether the region picker is disabled. |
| ``readonly`` | `boolean=` | `false` | Whether the region picker is read-only. |
^^^datasource
The datasource of the region picker. The type of node item is `{label, value, disabled, children, ...}`.
@@ -41,7 +41,7 @@ The array of selected `value`s.
| Name | Description |
| -- | -- |
| `label` | [^slot-label] |
| ``label`` | [^slot-label] |
^^^slot-label
The label content of each node. Displays the `label` property of each item by default.
@@ -68,12 +68,12 @@ When `level` is `2` and `overlay` is `true`, the information of selected node co
| Name | Description |
| -- | -- |
| `select` | [^event-select] |
| ``select`` | [^event-select] |
^^^event-select
:::badges
`v-model`
:::
Triggered when the selection changed. The callback parameter list is `(value: Array)`. The type of `value` is the same as the `selected` prop.
Triggered when the selection changed. The callback parameter list is `(value: Array)`. The type of `value` is the same as the [`selected`](#props-selected) prop.
^^^