client-app/src/app/carnet/goods/goods.component.ts

15 lines
493 B
TypeScript
Raw Normal View History

2025-07-02 22:40:35 -03:00
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { AngularMaterialModule } from '../../shared/module/angular-material.module';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-goods',
imports: [AngularMaterialModule, CommonModule],
templateUrl: './goods.component.html',
styleUrl: './goods.component.scss'
})
export class GoodsComponent {
@Input() headerid: number = 0;
2025-07-02 22:40:35 -03:00
@Output() completed = new EventEmitter<boolean>();
}