在Electron应用程序的新标签src标记中使用Angular路由器链接

时间:2019-07-30 10:40:23

标签: angular electron

我正在使用角度7的电子。尝试打开每个路由器链接作为新标签,但没有找到任何可以帮助我实现这一目标的东西。这是一段在电子中创建新标签的代码:

  newtab(str: string) {
    let tab = this.tabGroup.addTab({
      title: str,
      src: 'Here I want to use Router link',
      visible: true,
      active: true,
      iconURL: '',

如何在src标签中插入路由器链接?

0 个答案:

没有答案