mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-05 13:00:47 +08:00
17 lines
233 B
Markdown
17 lines
233 B
Markdown
# Datetime
|
|
|
|
```html
|
|
<n-date-picker v-model:value="timestamp" type="datetime" clearable />
|
|
<pre>{{ JSON.stringify(timestamp) }}</pre>
|
|
```
|
|
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
timestamp: 1183135260000
|
|
}
|
|
}
|
|
}
|
|
```
|