Schematics: Angular 13
why520crazy opened this issue · 0 comments
why520crazy commented
Styles
所有二级 mixin 的引入改为 basic
@use '~ngx-tethys/shared/select/select.mixin.scss' as thy-tethys-select;
@use '~ngx-tethys/shared/option/styles/option.mixin.scss' as thy-tethys-option;
.example {
@include thy-tethys-option.thy-option-common-layout();
}
改成
@use 'ngx-tethys/styles/basic' as basic;
.example {
@include basic.thy-option-common-layout();
}