Angular notes

Angular 中 declarations/imports/providers 区别:


declarations 声明当前模块中的component/directive 给当前模块 使用。

imports 引入外部模块中的component/directive 给当前模块 使用。

providers  声明 services and values 给DI。

More details

你可能感兴趣的:(Angular notes)