fix(PickerGroup): only filter Comment vnode (#12402)

This commit is contained in:
ShuGang Zhou 2023-10-28 22:24:27 +08:00 committed by GitHub
parent c1d32e953f
commit e2081c8890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,9 @@
import { defineComponent, type InjectionKey, type ExtractPropTypes } from 'vue';
import {
defineComponent,
Comment,
type InjectionKey,
type ExtractPropTypes,
} from 'vue';
// Utils
import {
@ -71,7 +76,10 @@ export default defineComponent({
const onCancel = () => emit('cancel');
return () => {
const childNodes = slots.default?.();
const childNodes = slots
.default?.()
?.filter((node) => node.type !== Comment);
const confirmButtonText = showNextButton()
? props.nextStepText
: props.confirmButtonText;

View File

@ -39,11 +39,13 @@ const onCancel = () => {
@confirm="onConfirm"
@cancel="onCancel"
>
<!-- Date -->
<van-date-picker
v-model="currentDate"
:min-date="minDate"
:max-date="maxDate"
/>
<!-- Time -->
<van-time-picker v-model="currentTime" />
</van-picker-group>
</template>