Angular LMS app
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

tabs.component.ts 296 B

5 年之前
5 年之前
5 年之前
5 年之前
12345678910111213141516
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-tabs',
  4. templateUrl: './tabs.component.html',
  5. styleUrls: ['./tabs.component.scss']
  6. })
  7. export class TabsComponent implements OnInit {
  8. selectedTab: string = 'home';
  9. constructor() { }
  10. ngOnInit(): void {
  11. }
  12. }