Angular commands Get link Facebook X Pinterest Email Other Apps March 16, 2022 ng g c testabove command is to create new component, and test is a component name Get link Facebook X Pinterest Email Other Apps Comments
Different type of selectors and call methods March 16, 2022 selector: 'app-root' call method <app-root></app-root> Using Class method selector: '.app-root' call method <div class="app-root"></div> Using attribute method selector: '[app-root]' call method <div app-root></div> Read more
Install angular March 16, 2022 Install the CLI using the npm package manager: npm install -g @angular/cli ng new my - first - project cd my - first - project ng serve Read more
Comments
Post a Comment