在Angular2中动态添加选项卡

时间:2017-03-06 16:25:45

标签: angular typescript

我正在尝试在标签旁边添加一个加号按钮,然后点击其中我想再添加一个标签。这是我的代码(参见上面提到的plunker)。

目前它似乎没有用。你可以告诉我如何在点击角度2的按钮时动态添加标签。

@Component({
  selector: 'my-app',
  template: `
    <tabs>
      <tab [tabTitle]="'Tab 1'">Tab 1 Content</tab>
    </tabs>
  `
})
class App {
  constructor() {
    this.name = 'Angular2'
  }
}

Plunker:https://plnkr.co/edit/O5EZaw5Nn36QP3XEJM0R?p=preview

0 个答案:

没有答案