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/time-picker/demo/index.vue

55 lines
1.3 KiB

<script>
import Hours from './12hours';
import Addon from './addon';
import Basic from './basic';
import Disabled from './disabled';
import HideColumn from './hide-column';
import IntervalOptions from './interval-options';
import Size from './size';
import Value from './value';
import Suffix from './suffix';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
const md = {
cn: `# TimePicker 时间选择框
输入或选择时间的控件
## 何时使用
当用户需要输入一个时间可以点击标准输入框弹出时间面板进行选择
## 代码演示`,
us: `# TimePicker
To select/input a time.
## When To Use
7 years ago
By clicking the input box, you can select a time from a popup panel.
## Examples `,
};
export default {
category: 'Components',
subtitle: '时间选择框',
type: 'Data Entry',
title: 'TimePicker',
render () {
return (
7 years ago
<div id='components-timepicker-demo'>
<md cn={md.cn} us={md.us}/>
<Hours/>
<Addon/>
<Basic/>
<Disabled/>
<HideColumn/>
<IntervalOptions/>
<Size/>
<Value/>
<Suffix/>
<api>
<CN slot='cn' />
<US/>
</api>
</div>
);
},
};
</script>
<style>
7 years ago
#components-timepicker-demo .ant-time-picker { margin: 0 8px 12px 0; }
</style>