$forceUpdate()使用:
this.$forceUpdate():
强制刷新组件,只会触发组件的beforeUpdate和updated两个声明周期
this.$forceUpdate();
$nextTick()使用
this.$nextTick(() => {要执行的代码})
跳过此次dom的刷新之后再去执行$nextTick(() => {}); 回调函数里的语句