mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
20 lines
358 B
Markdown
20 lines
358 B
Markdown
|
# Unix
|
||
|
Use Unix timestamp as time.
|
||
|
```html
|
||
|
<n-time :time="4320000000" :to="8640000000"/>
|
||
|
<br>
|
||
|
<n-time :time="4320000" :to="8640000" unix/>
|
||
|
<br>
|
||
|
<n-time :time="4320000000" format="yyyy-MM-dd hh:mm:ss"/>
|
||
|
<br>
|
||
|
<n-time :time="4320000" format="yyyy-MM-dd hh:mm:ss" unix/>
|
||
|
```
|
||
|
```js
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
time: new Date(0)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|