标签: angular electron
我正在使用电子和角度创建应用程序。 我在应用程序中使用并创建标签如下:
newtab(str: string) { this.tabGroup.addTab({ title: 'newtab', src:'./index.html', visible: true, active: true, }); }
我创建了一个带有角度的组件(html,css等)。我想使用route在该选项卡中加载此组件。这可能吗?