In this challenge you’re tasked with creating a storefront to help company x create a billing form for their store.
When the page loads there should be one row with the following input fields:
- Description - Holds the item name.
- Cost - Holds the price of the item.
- Quantity - Holds the number of items.
- VAT - Holds the value added tax for that item in percentage.
- Total - Displays the cost of the item exclusive of value added tax.
- Actions - A menu that pops a delete row/item option.
The Add Item button adds another row below the existing ones. The Delete Row button in actions removes a row from the form.
The form is reactive hence the totals are calculated every time an input field is updated (excluding the description).