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.md

43 lines
915 B

7 years ago
<cn>
#### 额外的页脚
7 years ago
在浮层中加入额外的页脚,以满足某些定制信息的需求。
</cn>
7 years ago
<us>
#### Extra Footer
7 years ago
Render extra footer in panel for customized requirements.
</us>
7 years ago
```html
<template>
7 years ago
<div>
<a-date-picker>
<template slot="renderExtraFooter">
extra footer
</template>
</a-date-picker>
<a-date-picker showTime >
<template slot="renderExtraFooter">
extra footer
</template>
</a-date-picker>
<a-range-picker >
<template slot="renderExtraFooter">
extra footer
</template>
</a-range-picker>
<a-range-picker showTime >
<template slot="renderExtraFooter">
extra footer
</template>
</a-range-picker>
<a-month-picker placeholder="Select month" >
<template slot="renderExtraFooter">
extra footer
</template>
</a-month-picker>
7 years ago
</div>
</template>
```