angular中如何引入多个css文件

转自:

https://blog.csdn.net/u011135260/article/details/78196516


import { ViewEncapsulation } from "@angular/core";@Component({ templateUrl: "./login.html",

  styleUrls: ['./login.css','/bootstrap/css/bootstrap.min.css'],

  encapsulation: ViewEncapsulation.Emulated

})

你可能感兴趣的:(angular中如何引入多个css文件)