星云切换在生产模式下不起作用
nebular toggle does not work in production mode
我的页面上有一个 nb-toggle html 元素。
它在调试模式下运行良好,但在生产模式下它看起来像这样:
任何可能导致此问题的建议?
这是本地的运行,看起来很不错。
我将 Angular 9 与星云一起使用。
<nb-toggle (checkedChange)="toggleTempHolder($event)" [(checked)]="service.tempholderChecked"
class="input-group-sm" style="position: absolute;bottom: 0px;right:0px;"></nb-toggle>
必须创建一个 css
nb-toggle .checked span{
left: auto !important;
}
有了这个,它就可以在生产中正常工作了。
我的页面上有一个 nb-toggle html 元素。
它在调试模式下运行良好,但在生产模式下它看起来像这样:
任何可能导致此问题的建议?
这是本地的运行,看起来很不错。 我将 Angular 9 与星云一起使用。
<nb-toggle (checkedChange)="toggleTempHolder($event)" [(checked)]="service.tempholderChecked"
class="input-group-sm" style="position: absolute;bottom: 0px;right:0px;"></nb-toggle>
必须创建一个 css
nb-toggle .checked span{
left: auto !important;
}
有了这个,它就可以在生产中正常工作了。