哪种方式更适合角度7中的动态负载样式我使用例如这种方式但不能在版本7角度工作,此外这个代码工作在版本低角度7帮助我,谢谢
function theme(): string[] {
// return ['./app.component.less'] >> not find
return ['/app.component.less']
}
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: theme()
})
您必须为styleURL提供链接。在这里,我更新您的代码。请看看。
有关详细信息,您可以使用给定的链接Angular7 Component Styles
function theme(): string[] {
// return ['./app.component.less'] >> not find
return ['/app.component.less']
}
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})