naive-ui/demo/documentation/components/time/zhCN/unix.demo.md

20 lines
377 B
Markdown
Raw Normal View History

2020-02-04 11:37:14 +08:00
# Unix 时间戳
使用 Unix 时间戳作为时间。
```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)
}
}
}
```