如何解决 "width property is deprecated, use style to define the width of the Dialog." 警告

How to resolve "width property is deprecated, use style to define the width of the Dialog." warning

我在 angular 7 和 primeng 7 中收到以下警告,即使我没有声明任何宽度属性。

width property is deprecated, use style to define the width of the Dialog.

有没有人知道如何解决这个问题。

提前致谢

Width 和 minWidth 已弃用。

使用样式道具做你想做的事:

<p-dialog [style]="{width: '500px'}"