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

225 B

Date

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