Tag $forceUpdate

Vue.js of Vue.nextTick and vm.$forceUpdate()

Official explanation: Force vue instances to re-render. Note that it affects only the instance itself and the subcomponents that insert the contents of the slot, not all subcomponents.equivalent to manually triggering render() this.$forceUpdate();perform forced rendering. for example, there are too…

In Vue, $forceUpdate use of ().

It is pointed out in the official documentation of Vue that it has the effect of forcing refresh. That in the vue framework, if there is a variable: age, modify it, the page will be updated automatically.However, if the variable…