You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/date-picker/demo/extra-footer.vue

38 lines
879 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 7
title:
zh-CN: 额外的页脚
en-US: Extra Footer
---
## zh-CN
在浮层中加入额外的页脚以满足某些定制信息的需求
## en-US
Render extra footer in panel for customized requirements.
</docs>
<template>
<a-space direction="vertical">
<a-date-picker>
<template #renderExtraFooter>extra footer</template>
</a-date-picker>
<a-date-picker show-time>
<template #renderExtraFooter>extra footer</template>
</a-date-picker>
<a-range-picker>
<template #renderExtraFooter>extra footer</template>
</a-range-picker>
<a-range-picker show-time>
<template #renderExtraFooter>extra footer</template>
</a-range-picker>
<a-date-picker placeholder="Select month" picker="month">
<template #renderExtraFooter>extra footer</template>
</a-date-picker>
</a-space>
</template>