Objectives: Angular Interfaces, Interpolation Task: Display a menu for Chirpus Pizza, where youll find the best wings an
Posted: Thu Jul 14, 2022 2:19 pm
designing an app for pizza which shows the menu in it consists of dish, price and of the item
Objectives: Angular Interfaces, Interpolation Task: Display a menu for Chirpus Pizza, where youll find the best wings and decent pizza. What will the application do? - The application will load a list of menu items into an array in TypeScript - The application will display the menu neatly formatted in the web browser. Build Specifications: 1. Use the command line and VS Code (do not use Visual Studio). 2. Generate a new Angular application called menu: clear out the app.componenthtml since it's filled with default HTML that you won't need. 3. Create a new interface called Menultem. (Notice how the filename ends up different: from the type name; this is fine.) 4. In your AppComponent's TypeScript code, create an array of Menultem instances, and fill the array with several menu items. 5. In your App Component's HTML code, look through the array and list the menu items using whatever HTML you wish (Tables Divs or whatever else). Hints: - Remember your import statement to load the Menultem type into app.componentis. - Create whatever items you want, but have at least six items, and at least three categories.
Objectives: Angular Interfaces, Interpolation Task: Display a menu for Chirpus Pizza, where youll find the best wings and decent pizza. What will the application do? - The application will load a list of menu items into an array in TypeScript - The application will display the menu neatly formatted in the web browser. Build Specifications: 1. Use the command line and VS Code (do not use Visual Studio). 2. Generate a new Angular application called menu: clear out the app.componenthtml since it's filled with default HTML that you won't need. 3. Create a new interface called Menultem. (Notice how the filename ends up different: from the type name; this is fine.) 4. In your AppComponent's TypeScript code, create an array of Menultem instances, and fill the array with several menu items. 5. In your App Component's HTML code, look through the array and list the menu items using whatever HTML you wish (Tables Divs or whatever else). Hints: - Remember your import statement to load the Menultem type into app.componentis. - Create whatever items you want, but have at least six items, and at least three categories.