async

async

  • Type: Boolean

  • Default: true

  • Usage:

    Vue.config.async = false

    When async mode is off, Vue will perform all DOM updates synchronously upon detecting data change. This may help with debugging in some scenarios, but could also cause degraded performance and affect the order in which watcher callbacks are called. async: false is not recommended in production.

doc_VueJS
2016-09-25 05:48:01
Comments
Leave a Comment

Please login to continue.