Using Components from Another Module on a Angular/JHipster Application
问题 I'm trying to use a component from another module on an Angular 5 application generated by jhipster . When a module that contains the component that I want to use is imported the route of the module where the importing occurred is overwritten by the route of the imported module . phone.module.ts exports PhoneComponent . contact-info.module.ts import phone.module.ts . After that, every route declared in contact-info.route.ts starts to render the components declared in the phone.module.ts . It