Adding Module with Routing in Angular
Post Views: 28 The angular cli for creating another module with its routing. ng g module /admin/home –routing –module=app The above command will create a module inside admin/home with it’s…
Learn developer and data technologies with us
Post Views: 28 The angular cli for creating another module with its routing. ng g module /admin/home –routing –module=app The above command will create a module inside admin/home with it’s…
Post Views: 73 This error occurs because of missing dev dependency which is introduced newly in Angular 6.0 and above. Solution: Install @angular-devkit/build-angular In some cases npm install ng update…
Post Views: 134 More than one module matches. Use skip-import option to skip importing the component into the closest module. Command ng g component –skipTests /admin/home –module=app This command will…
Post Views: 15 Write the following style in your css file. [code] .page-loader { position: fixed; width: 100%; height: 100%; top: 0px; right: 0px; …
Post Views: 34 This article describes how to start the angular 6 with Asp.net core in Visual Studio. Here are some steps that will guide beginners to start a project…
Post Views: 15 Angular Directives In Angular, Directives are good features for re-usability. -Directives are used for reusable purpose for example Time Picker Controller, Data Picker Controller, File Upload Controller…
Post Views: 18 There are several ways to print the div or section, however I found this is easiest way and it works fine. Code Sample Let me a bit…