我一直在我的应用程序中使用 Angular Material 工具提示,但是当我最近升级到 Angular 11 时,它已经停止工作。我在模板中使用以下代码创建了一个测试组件,我直接从https://material.angular.io/components/tooltip/overview复制了它
<button mat-raised-button
matTooltip="Info about the action"
aria-label="Button that displays a tooltip when focused or hovered over">
Action
</button>
我打开了 Chrome 开发工具,当我悬停时我可以看到模板发生的变化,但我仍然看不到屏幕上的工具提示。
我已经安装了 Angular Material,并且我已经导入了所有必要的模块,所以我不确定问题是什么(可能只是 Angular Material 中的一个错误?)