bixi
Version:
企业级中后台前端解决方案
33 lines (26 loc) • 544 B
Markdown
title:
zh-CN: 绝对时间
en-US: Absolute time
order: 1
## zh-CN
鼠标滑上去可以显示相对时间
## en-US
鼠标滑上去可以显示相对时间
```ts
import { Component } from '@angular/core';
@Component({
selector: 'bixi-relative-time-demo',
template: `
<bixi-time [time]="time" [radio]="radio" [relative]="false"></bixi-time>
<br/>
<bixi-time [time]="time1" [relative]="false"></bixi-time>
`
})
export class BixiTimeComponent {
time = 1590915300;
time1 = new Date();
radio = 1000;
}
```