Question 8
Consider the following HTML, with the correct Vue 2 CDN links included.
<body> <div id="app"> <p>pineapple 🍍</p> <button @click="addPineapple">Buy</button> <p>Amount : {{amount}}</p> </div> <script> new Vue({ el: '#app', data() { return { amount: '', price: 40, } }, methods: { addPineapple() { this.amount += this.price; } } }) </script></body>What will be shown in the amount placeholder when the Buy button is clicked two times?
40
80
4040
undefined