10 lines
291 B
Vue
10 lines
291 B
Vue
|
/** Created by Andrey Gayvoronsky on 13/04/16. */
|
||
|
import type { TimePickerLocale } from '../index';
|
||
|
|
||
|
const locale: TimePickerLocale = {
|
||
|
placeholder: 'Выберите время',
|
||
|
rangePlaceholder: ['Время начала', 'Время окончания'],
|
||
|
};
|
||
|
|
||
|
export default locale;
|