mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
feat(PickerGroup): add new prop showToolbar (#12839)
This commit is contained in:
parent
01183e1208
commit
c25ebf772d
@ -15,6 +15,7 @@ import {
|
||||
makeArrayProp,
|
||||
makeNumericProp,
|
||||
createNamespace,
|
||||
truthProp,
|
||||
} from '../utils';
|
||||
|
||||
// Composables
|
||||
@ -40,6 +41,7 @@ export const pickerGroupProps = extend(
|
||||
tabs: makeArrayProp<string>(),
|
||||
activeTab: makeNumericProp(0),
|
||||
nextStepText: String,
|
||||
showToolbar: truthProp,
|
||||
},
|
||||
pickerToolbarProps,
|
||||
);
|
||||
@ -100,14 +102,16 @@ export default defineComponent({
|
||||
|
||||
return (
|
||||
<div class={bem()}>
|
||||
<Toolbar
|
||||
v-slots={pick(slots, pickerToolbarSlots)}
|
||||
title={props.title}
|
||||
cancelButtonText={props.cancelButtonText}
|
||||
confirmButtonText={confirmButtonText}
|
||||
onConfirm={onConfirm}
|
||||
onCancel={onCancel}
|
||||
/>
|
||||
{props.showToolbar ? (
|
||||
<Toolbar
|
||||
v-slots={pick(slots, pickerToolbarSlots)}
|
||||
title={props.title}
|
||||
cancelButtonText={props.cancelButtonText}
|
||||
confirmButtonText={confirmButtonText}
|
||||
onConfirm={onConfirm}
|
||||
onCancel={onCancel}
|
||||
/>
|
||||
) : null}
|
||||
<Tabs
|
||||
v-model:active={activeTab.value}
|
||||
class={bem('tabs')}
|
||||
|
@ -296,6 +296,7 @@ export default {
|
||||
| v-model:active-tab `v4.3.2` | Set index of active tab | _number \| string_ | `0` |
|
||||
| tabs | Titles of tabs | _string[]_ | `[]` |
|
||||
| title | Toolbar title | _string_ | `''` |
|
||||
| show-toolbar | Whether to show toolbar | _boolean_ | `true` |
|
||||
| next-step-text `v4.0.8` | Text of next step button | _string_ | `''` |
|
||||
| confirm-button-text | Text of confirm button | _string_ | `Confirm` |
|
||||
| cancel-button-text | Text of cancel button | _string_ | `Cancel` |
|
||||
|
@ -297,6 +297,7 @@ export default {
|
||||
| v-model:active-tab `v4.3.2` | 设置当前选中的标签 | _number \| string_ | `0` |
|
||||
| tabs | 设置标签页的标题 | _string[]_ | `[]` |
|
||||
| title | 顶部栏标题 | _string_ | `''` |
|
||||
| show-toolbar | 是否显示顶部栏 | _boolean_ | `true` |
|
||||
| next-step-text `v4.0.8` | 下一步按钮的文字 | _string_ | `''` |
|
||||
| confirm-button-text | 确认按钮的文字 | _string_ | `确认` |
|
||||
| cancel-button-text | 取消按钮的文字 | _string_ | `取消` |
|
||||
|
Loading…
x
Reference in New Issue
Block a user