I am using ng2-bootstrap dynamic tabs and I am wondering if it is possible to set the content in a tab to be a template or a separate component.
So in the example in the documentation you set an array of tabs like this.
public tabs: any[] = [
{title: 'Dynamic Title 1', content: 'Dynamic content 1'},
{title: 'Dynamic Title 2', content: 'Dynamic content 2', disabled: true},
{title: 'Dynamic Title 3', content: 'Dynamic content 3', removable: true}
];
I would like to set the content to a template or a separate component. Is this possible? Please provide an example. Thanks!