Im first time trying super tabs (swipable tabs)
But cant get it worked, below is the eror details
Uncaught (in promise): Error: Template parse errors: Can't bind to 'root' since it isn't a known property of 'super-tab'. 1. If 'super-tab' is an Angular component and it has 'root' input, then verify that it is part of this module. 2. If 'super-tab' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. (" <super-tabs> <super-tab [ERROR ->][root]="tab1Root" title="First page"></super-tab> <super-tab [root]="tab2Root" title="Second page">"): ng:///TabsPageModule/TabsPage.html@7:13 'super-tab' is not a known element: 1. If 'super-tab' is an Angular component, then verify that it is part of this module. 2. If 'super-tab' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. (" <super-tabs> [ERROR ->]<super-tab [root]="tab1Root" title="First page"></super-tab> <super-tab [root]="tab2Root" title="Se"): ng:///TabsPageModule/TabsPage.html@7:2 Can't bind to 'root' since it isn't a known property of 'super-tab'. 1. If 'super-tab' is an Angular component and it has 'root' input, then verify that it is part of this module. 2. If 'super-tab' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. 3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. (" <super-tabs> <super-tab [root]="tab1Root" title="First page"></super-tab> <super-tab [ERROR ->][root]="tab2Root" title="Second page"></super-tab> <super-tab [root]="tab3Root"
How to solve this ?