UNPKG

bixi

Version:

企业级中后台前端解决方案

16 lines (12 loc) 375 B
import { Injectable } from '@angular/core'; import { ReplaySubject } from 'rxjs'; export type SiteTheme = 'default' | 'dark' | 'compact'; @Injectable({ providedIn: 'root' }) export class AppService { theme: SiteTheme = 'default'; theme$ = new ReplaySubject<SiteTheme>(1); setTheme(theme: SiteTheme): void { this.theme = theme; this.theme$.next(theme); } }