naive-ui/demo/documentation/components/date-picker/enUS/date.demo.md
2020-12-12 15:33:41 +08:00

17 lines
225 B
Markdown

# Date
```html
<n-date-picker v-model:value="timestamp" type="date" clearable />
<pre>{{ JSON.stringify(timestamp) }}</pre>
```
```js
export default {
data () {
return {
timestamp: 1183135260000
}
}
}
```