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.
20 lines
411 B
20 lines
411 B
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;
|
|
};
|
|
|
|
}
|