mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
ff25efe185
* refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
53 lines
3.0 KiB
Markdown
53 lines
3.0 KiB
Markdown
|
||
## API
|
||
|
||
````html
|
||
<a-cascader :options="options" @change="onChange" />
|
||
````
|
||
|
||
| Property | Description | Type | Default |
|
||
| -------- | ----------- | ---- | ------- |
|
||
| allowClear | whether allow clear | boolean | true |
|
||
| autoFocus | get focus when component mounted | boolean | false |
|
||
| changeOnSelect | change value on each selection if set to true, see above demo for details | boolean | false |
|
||
| defaultValue | initial selected value | string\[] | \[] |
|
||
| disabled | whether disabled select | boolean | false |
|
||
| displayRender | render function of displaying selected options, you can use slot="displayRender" and slot-scope="{labels, selectedOptions}" | `({labels, selectedOptions}) => vNode` | `labels => labels.join(' / ')` |
|
||
| expandTrigger | expand current item when click or hover, one of 'click' 'hover' | string | 'click' |
|
||
| fieldNames | custom field name for label and value and children | object | `{ label: 'label', value: 'value', children: 'children' }` |
|
||
| getPopupContainer | Parent Node which the selector should be rendered to. Default to `body`. When position issues happen, try to modify it into scrollable content and position it relative. | Function(triggerNode) | () => document.body |
|
||
| loadData | To load option lazily, and it cannot work with `showSearch` | `(selectedOptions) => void` | - |
|
||
| notFoundContent | Specify content to show when no result matches. | string | 'Not Found' |
|
||
| options | data options of cascade | object | - |
|
||
| placeholder | input placeholder | string | 'Please select' |
|
||
| popupClassName | additional className of popup overlay | string | - |
|
||
| popupStyle | additional style of popup overlay | object | {} |
|
||
| popupPlacement | use preset popup align config from builtinPlacements:`bottomLeft` `bottomRight` `topLeft` `topRight` | string | `bottomLeft` |
|
||
| popupVisible | set visible of cascader popup | boolean | - |
|
||
| showSearch | Whether show search input in single mode. | boolean\|object | false |
|
||
| size | input size, one of `large` `default` `small` | string | `default` |
|
||
| value(v-model) | selected value | string\[] | - |
|
||
|
||
Fields in `showSearch`:
|
||
|
||
| Property | Description | Type | Default |
|
||
| -------- | ----------- | ---- | ------- |
|
||
| filter | The function will receive two arguments, inputValue and option, if the function returns true, the option will be included in the filtered set; Otherwise, it will be excluded. | `function(inputValue, path): boolean` | |
|
||
| matchInputWidth | Whether the width of result list equals to input's | boolean | |
|
||
| render | Used to render filtered options, you can use slot="showSearchRender" and slot-scope="{inputValue, path}" | `function({inputValue, path}): vNode` | |
|
||
| sort | Used to sort filtered options. | `function(a, b, inputValue)` | |
|
||
|
||
### events
|
||
| Events Name | Description | Arguments |
|
||
| --- | --- | --- |
|
||
| change | callback when finishing cascader select | `(value, selectedOptions) => void` | - |
|
||
| popupVisibleChange | callback when popup shown or hidden | `(value) => void` | - |
|
||
|
||
## Methods
|
||
|
||
| Name | Description |
|
||
| ---- | ----------- |
|
||
| blur() | remove focus |
|
||
| focus() | get focus |
|
||
|