动态StyleUrl Angular 7

问题描述 投票:0回答:1

哪种方式更适合角度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()
})
angular typescript less angular7
1个回答
0
投票

您必须为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']
})
© www.soinside.com 2019 - 2024. All rights reserved.