I am using two way data-binding but there is something am not being able to achieve.
At the moment, I have a a set of input fields, and everytime I type anything in them, the span tags next to them get filled with the data. However, I want to show the equal sign only when I start typing.
The span tag has this text: Your gross income
When I start typing on the input field it should add the equal sign: Your gross income is = "the value here"
Basically the v-if will hide the span until something is in it. The v-text is a Vue directive that binds the elements textContent to whatever is in there. Since it's a directive, the value of v-text is treated as a regular expression.