mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
9 lines
201 B
Vue
9 lines
201 B
Vue
|
import type { TimePickerLocale } from '../index';
|
||
|
|
||
|
const locale: TimePickerLocale = {
|
||
|
placeholder: '请选择时间',
|
||
|
rangePlaceholder: ['开始时间', '结束时间'],
|
||
|
};
|
||
|
|
||
|
export default locale;
|