gpt4 book ai didi

angular - 组件 Angular 中加载 styleUrls 的条件

转载 作者:行者123 更新时间:2023-12-04 15:54:20 24 4
gpt4 key购买 nike

我想在 styleUrls 中使用多 CSS

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [condition 'if' for Which load css]
})

我累了

最佳答案

你可以在里面使用三元运算符:

const url1 = './foo.css';
const url2 = './bar.css';

let condition = true

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [condition ? url1 : url2]
})

关于angular - 组件 Angular 中加载 styleUrls 的条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52491030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com