From bfa6dcd9eaca63055a82bc275f0e339899630d53 Mon Sep 17 00:00:00 2001 From: myh Date: Fri, 8 Dec 2023 17:45:20 +0800 Subject: [PATCH] foot component implement --- src/app/foot/foot.component.html | 2 +- src/app/foot/foot.component.scss | 3 +++ src/app/foot/foot.component.ts | 15 +++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/app/foot/foot.component.html b/src/app/foot/foot.component.html index c539494..274faf7 100644 --- a/src/app/foot/foot.component.html +++ b/src/app/foot/foot.component.html @@ -3,7 +3,7 @@

云南大学软件学院 版权所有

地址:昆明市呈贡区大学城东外环南路云南大学呈贡校区软件学院楼

邮编:650504

-

Copyright@ 2002-2018 School of Software

+

Copyright@ 2002-2018 School of Software

diff --git a/src/app/foot/foot.component.scss b/src/app/foot/foot.component.scss index e69de29..bd6213e 100644 --- a/src/app/foot/foot.component.scss +++ b/src/app/foot/foot.component.scss @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/src/app/foot/foot.component.ts b/src/app/foot/foot.component.ts index e69de29..a8e1bd8 100644 --- a/src/app/foot/foot.component.ts +++ b/src/app/foot/foot.component.ts @@ -0,0 +1,15 @@ +import {Component} from "@angular/core"; +import {RouterOutlet} from "@angular/router"; + +@Component({ + selector: 'app-foot', + standalone: true, + templateUrl: './foot.component.html', + imports: [ + RouterOutlet + ], + styleUrls: ['./foot.component.scss'] +}) +export class FootComponent { + +} \ No newline at end of file