Playing around with Angular 2 and trying to get this simple code working. yet I keep getting an error of:
EXCEPTION: Cannot resolve all parameters for Ta
You have two solutions: Inject your Tabs class globally at bootstrap:
bootstrap(MainCmp, [ROUTER_PROVIDERS, Tabs]);
On inject Tabs locally with a binding property,
@Component({ selector: 'tab', bindings: [Tabs], // injected here template: ` [...]