Install angular Get link Facebook X Pinterest Email Other Apps 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 Get link Facebook X Pinterest Email Other Apps Comments
Angular commands March 16, 2022 ng g c test above command is to create new component, and test is a component name Read more
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
Comments
Post a Comment