naive-ui/demo/documentation/components/timePicker/enUS/format.md

18 lines
204 B
Markdown
Raw Normal View History

2020-02-26 16:05:13 +08:00
# Format
```html
2020-02-26 17:21:03 +08:00
<n-time-picker v-model="time" format="h:mm a" />
2020-02-26 16:05:13 +08:00
```
```js
export default {
data () {
return {
time: null
}
}
}
```
```css
.n-time-picker {
margin: 0 12px 8px 0;
}
```