forked from FoundKeyGang/FoundKey
[Client] Resolve #3662
This commit is contained in:
parent
7f77517fc8
commit
6c47bf5b76
1 changed files with 1 additions and 8 deletions
|
@ -33,14 +33,7 @@ export default Vue.extend({
|
||||||
return typeof this.time == 'string' ? new Date(this.time) : this.time;
|
return typeof this.time == 'string' ? new Date(this.time) : this.time;
|
||||||
},
|
},
|
||||||
absolute(): string {
|
absolute(): string {
|
||||||
const time = this._time;
|
return this._time.toLocaleString();
|
||||||
return (
|
|
||||||
time.getFullYear() + '年' +
|
|
||||||
(time.getMonth() + 1) + '月' +
|
|
||||||
time.getDate() + '日' +
|
|
||||||
' ' +
|
|
||||||
time.getHours() + '時' +
|
|
||||||
time.getMinutes() + '分');
|
|
||||||
},
|
},
|
||||||
relative(): string {
|
relative(): string {
|
||||||
const time = this._time;
|
const time = this._time;
|
||||||
|
|
Loading…
Reference in a new issue