docs: configurando deploy via ssh para angular
This commit is contained in:
18
src/app/crm/menu-crm/menu-crm.component.ts
Normal file
18
src/app/crm/menu-crm/menu-crm.component.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-menu-crm',
|
||||
templateUrl: './menu-crm.component.html',
|
||||
styleUrls: ['./menu-crm.component.scss']
|
||||
})
|
||||
export class MenuCrmComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
status: boolean = false;
|
||||
clickEvent(){
|
||||
this.status = !this.status;
|
||||
}
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user