ng-environment-setup
Version:
ng environment setup
21 lines (18 loc) • 443 B
text/typescript
import { Component, OnInit } from '@angular/core'
import { SidebarService } from '@app/layout/sidebar/sidebar.service'
({
selector: 'app-sidebar',
templateUrl: './sidebar.component.html',
styleUrls: ['./sidebar.component.scss']
})
export class SidebarComponent implements OnInit {
constructor(
public sbs: SidebarService
) { }
/**
* 初始化获取菜单
*/
ngOnInit(): void {
this.sbs.getMenus()
}
}