mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Picker): add getSelectedOptions method
This commit is contained in:
parent
e2790fe95d
commit
83295e655d
@ -285,7 +285,9 @@ export default defineComponent({
|
||||
{ immediate: true }
|
||||
);
|
||||
|
||||
useExpose<PickerExpose>({ confirm });
|
||||
const getSelectedOptions = () => selectedOptions.value;
|
||||
|
||||
useExpose<PickerExpose>({ confirm, getSelectedOptions });
|
||||
|
||||
return () => (
|
||||
<div class={bem()}>
|
||||
|
@ -355,9 +355,10 @@ export default {
|
||||
|
||||
Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Picker instance and call instance methods.
|
||||
|
||||
| Name | Description | Attribute | Return value |
|
||||
| ------- | ------------------------------------- | --------- | ------------ |
|
||||
| confirm | Stop scrolling and emit confirm event | - | - |
|
||||
| Name | Description | Attribute | Return value |
|
||||
| --- | --- | --- | --- |
|
||||
| confirm | Stop scrolling and emit confirm event | - | - |
|
||||
| getSelectedOptions | Get current selected options | - | _PickerOption[]_ |
|
||||
|
||||
### Types
|
||||
|
||||
|
@ -374,9 +374,10 @@ export default {
|
||||
|
||||
通过 ref 可以获取到 Picker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/advanced-usage#zu-jian-shi-li-fang-fa)。
|
||||
|
||||
| 方法名 | 说明 | 参数 | 返回值 |
|
||||
| ------- | --------------------------------- | ---- | ------ |
|
||||
| confirm | 停止惯性滚动并触发 `confirm` 事件 | - | - |
|
||||
| 方法名 | 说明 | 参数 | 返回值 |
|
||||
| --- | --- | --- | --- |
|
||||
| confirm | 停止惯性滚动并触发 `confirm` 事件 | - | - |
|
||||
| getSelectedOptions | 获取当前选中的选项 | - | _PickerOption[]_ |
|
||||
|
||||
### 类型定义
|
||||
|
||||
|
@ -24,6 +24,7 @@ export type PickerColumn = PickerOption[];
|
||||
|
||||
export type PickerExpose = {
|
||||
confirm: () => void;
|
||||
getSelectedOptions: () => PickerOption[];
|
||||
};
|
||||
|
||||
export type PickerColumnProvide = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user