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 {
|
2025-07-07 19:09:47 -03:00
|
|
|
@Input() headerid: number = 0;
|
2025-07-02 22:40:35 -03:00
|
|
|
@Output() completed = new EventEmitter<boolean>();
|
|
|
|
|
}
|