foot component implement
This commit is contained in:
parent
244e71e007
commit
bfa6dcd9ea
@ -3,7 +3,7 @@
|
|||||||
<p>云南大学软件学院 版权所有</p>
|
<p>云南大学软件学院 版权所有</p>
|
||||||
<p>地址:昆明市呈贡区大学城东外环南路云南大学呈贡校区软件学院楼</p>
|
<p>地址:昆明市呈贡区大学城东外环南路云南大学呈贡校区软件学院楼</p>
|
||||||
<p>邮编:650504</p>
|
<p>邮编:650504</p>
|
||||||
<p>Copyright@ 2002-2018 School of Software</p>
|
<p>Copyright@ 2002-2018 School of Software</p>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
@ -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 {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user