web-dev-qa-db-ja.com

ngx-bootstrapアコーディオングループの見出しにアイコンを追加するにはどうすればよいですか?

Ngx-bootstrapを使用して、アコーディオングループの見出しにアイコンを追加するにはどうすればよいですか?例えば:

<accordion-group heading="<i class='fa fa-users'></i> Users"> This content is straight in the template. </accordion-group>

8
Junior Gantin

このようにできると思います。

<accordion-group #group>
    <span accordion-heading>
      <i class='fa fa-users'></i> Users
    </span>
    This content is straight in the template. 
</accordion-group>
13
Zim