[Vuejs]-Vue.js 2.0 data binding issue – one data field's change will trigger the other data fields' filter

0👍

This is natural to Vue.

Methods & Filters run on every DOM re-render.

This is why it’s best to use Computed whenever possible – these re-run only on change of connected properties.

Leave a comment