You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
411 B
21 lines
411 B
5 months ago
|
import { Component } from '@angular/core';
|
||
|
import { ThemeService } from '@app/core/services/theme.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-auth',
|
||
|
templateUrl: './auth.component.html',
|
||
|
styleUrls: ['./auth.component.scss']
|
||
|
})
|
||
|
export class AuthComponent {
|
||
|
|
||
|
constructor(
|
||
|
private _themeService: ThemeService
|
||
|
) { }
|
||
|
|
||
|
//主题
|
||
|
public get theme(): string {
|
||
|
return this._themeService.current;
|
||
|
};
|
||
|
|
||
|
}
|