Question 3
Consider the below Vue component.
<template> <div> <p>{{ counter }}</p> <button @click="incrementCounter">Increment</button> </div></template><script>export default { data() { return { counter: 0 }; }, methods: { incrementCounter() { this.counter = this.counter + 2; this.counter = this.counter * 2; this.counter = this.counter - 5; } }};</script>What will be displayed in the <p> element after the button with text "Increment" is clicked twice?
0
-1
-5
-3
2