Question 7
Consider the following HTML, with the correct Vue 2 CDN links included
<body> <div id="app"> <p>Coffee</p> <button @click="orderCoffee">Order</button> <p>Total Cost: {{totalCost}}</p> <p>Order Count: {{orderCount}}</p> </div> <script> new Vue({ el: '#app', data() { return { totalCost: '0', unitPrice: 25, orderCount: 0 } }, methods: { orderCoffee() { this.totalCost += this.unitPrice; this.orderCount++; } } }) </script></body>What will be displayed for "Total Cost" and "Order Count" when the Order button is clicked three times?