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

ボタン属性contentTypeまたはcontent-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 に答える