我是 Angular 4 的新手。不幸的是,我正在尝试使用路由器插座创建动态内容,但我无法使用它两次,因为我对平板电脑、手机和台式机有不同的场景。也许你们有什么建议?
我想我可以分配不同的网点, 但也许有更简单的方法?
我的代码:
<div class="ui two column stackable grid">
<app-navigation class="three wide column computer mobile only webso-navigation"></app-navigation>
<app-navigation class="four wide column tablet only webso-navigation"></app-navigation>
<div class="thirteen wide column computer mobile only webso-content">
<router-outlet></router-outlet>
</div>
<div class="twelve wide column tablet only webso-content">
<router-outlet></router-outlet>
</div>
</div>
谢谢您的帮助。