Hello got some problem with the p-message Tag in angular. I think ive imported it correctly as i show below.
import { MessageModule } from 'primeng/message';
imports: [
....
MessageModule,
...
In the html component it is:
<p-message [value]="message"></p-message>
And in addition, in the ts script it is:
message: Message[] = [];
Why i got this error, all the time?!
I want to display the error toastmessage above the inputfield, that someone knows that it already exists.
Thanks in the front for your help guys!