I recently updated my angular2 project to the final release after previously using angular2 RC5 for development. However, I encountered an error message stating "scrollable is not a known element." If I change
<scrollable><!--- angular code --></scrollable>
to <div><!--- angular code --></div>
, the issue resolves but I lose the ability to scroll the page.
I am utilizing angular-cli@latest and upon checking the browser console, I see the following messages:
1. If 'scrollable' is an Angular component, then verify that it is part of this module
2. If 'scrollable' is a Web Component, add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message
I am struggling to understand why this error is occurring. Any suggestions or advice would be greatly appreciated.
Thank you in advance.