tangjinzhou
6 years ago
8 changed files with 83 additions and 12 deletions
@ -0,0 +1,28 @@
|
||||
<cn> |
||||
#### 后缀图标 |
||||
点击 TimePicker,然后可以在浮层中选择或者输入某一时间。 |
||||
</cn> |
||||
|
||||
<us> |
||||
#### Suffix |
||||
Click `TimePicker`, and then we could select or input a time in panel. |
||||
</us> |
||||
|
||||
```html |
||||
<template> |
||||
<a-time-picker @change="onChange" :defaultOpenValue="moment('00:00:00', 'HH:mm:ss')"> |
||||
<a-icon type="smile" slot="suffixIcon"/> |
||||
</a-time-picker> |
||||
</template> |
||||
<script> |
||||
import moment from 'moment'; |
||||
export default { |
||||
methods: { |
||||
moment, |
||||
onChange(time, timeString){ |
||||
console.log(time, timeString); |
||||
} |
||||
}, |
||||
} |
||||
</script> |
||||
``` |
@ -1,5 +1,5 @@
|
||||
const locale = { |
||||
placeholder: 'Selezionare il tempo', |
||||
placeholder: 'Selezionare l\'orario', |
||||
} |
||||
|
||||
export default locale |
||||
|
@ -0,0 +1,5 @@
|
||||
const locale = { |
||||
placeholder: 'Цаг сонгох', |
||||
} |
||||
|
||||
export default locale |
Loading…
Reference in new issue