useMountEffect

当组件挂载时执行给定的回调函数。


import { useMountEffect } from 'primereact/hooks';
         

当组件挂载时,会显示一条消息。

在右上角查看Toast消息。

useMountEffect(() => {
    toast.current.show({ severity: 'info', summary: 'Mounted', sticky: true });
});