Question 7
Consider the below VueJS application.
<div id="app"> <p>{{ counter }}</p> <button @click="updateCounter">Click Me</button></div>
<script>new Vue({ el: '#app', data: { counter: 1, }, methods: { updateCounter() { this.counter *= 2; }, },});</script>What will the “p” tag display when the button with the text “Click Me” is clicked three times?
1
4
8
16