naive-ui/demo/documentation/components/time-picker/enUS/format.demo.md

14 lines
157 B
Markdown
Raw Normal View History

2020-02-26 16:05:13 +08:00
# Format
```html
2020-10-22 13:14:56 +08:00
<n-time-picker v-model:value="time" format="h:mm a" />
2020-02-26 16:05:13 +08:00
```
```js
export default {
data () {
return {
time: null
}
}
}
```