[Vuejs]-Vue.js Form submits immediately shown with v-if

0👍

If any one still uses this approach to re-render vue apps, my advice is, don’t.

The best way to re-render the app is by doing

this.forceUpdate();

This will re-render the vue app instead of modifying data properties of the vue instance which are utilized during rendering.

However, don’t overuse it.
Most times when your view is not re-rendering naturally, its probably because you are doing something wrong.

Leave a comment