This commit is contained in:
Ruin
2022-03-04 15:56:45 +08:00
parent 09be1dab5a
commit cdc15b979c
26 changed files with 296 additions and 155 deletions

View File

@@ -1,15 +1,24 @@
import { Component, OnInit } from '@angular/core';
/*
* @Description: {{ByRuin}}
* @Version: 2.0
* @Author: Ruin 🍭
* @Date: 2022-03-04 10:47:32
* @LastEditors: 刘引
* @LastEditTime: 2022-03-04 14:39:52
*/
import { Component, OnInit } from "@angular/core";
@Component({
selector: 'app-list',
templateUrl: './list.component.html',
styleUrls: ['./list.component.scss']
selector: "app-list",
templateUrl: "./list.component.html",
styleUrls: ["./list.component.scss"],
})
export class ListComponent implements OnInit {
public today: any = new Date();
constructor() { }
ngOnInit(): void {
constructor() {
console.log(this.today);
}
ngOnInit(): void {}
}