1

tolTemplate 没有与 [tooltip] 绑定

<ng-template #tolTemplate>
  Just another: 
</ng-template>
<button type="button" class="btn btn-success" [tooltip]="tolTemplate">
  Show me tooltip with html
</button>

任何想法,如何解决这个问题。

在此处输入图像描述\

4

1 回答 1

0

尝试添加到按钮属性contentTypecontent-type(取决于版本角度)。

<ng-template #tolTemplate>
  Just another: 
</ng-template>
<button type="button" class="btn btn-success" [tooltip]="tolTemplate" contentType="template">
  Show me tooltip with html
</button>
于 2022-02-10T12:10:48.490 回答