Methods in Vue
Briefly

Methods in Vue are defined in the methods object.Methods are reactive
If your Vue template uses a method, and a value that the method relies on changes, Vue will re-render the template.For example, the following code correctly displays the current value, even though value is displayed using a method.
Read at Mastering JS
[
add
]
[
|
|
]