12345678910111213141516 |
- import { Component } from '@angular/core';
- @Component({
- selector: 'app-tab2',
- templateUrl: 'tab2.page.html',
- styleUrls: ['tab2.page.scss']
- })
- export class Tab2Page {
- currentTab:string = "recommend"
- constructor() {}
- onClick(){
- alert("666")
- }
- }
|