1234567891011121314151617181920 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-tabs',
- templateUrl: './tabs.page.html',
- styleUrls: ['./tabs.page.scss'],
- })
- export class TabsPage implements OnInit {
- constructor() { }
- ngOnInit() {
- }
- changeTabs(e){
- }
- }
|