呼啦一阵风
123456789101112new Vue({ mounted:function(){ this.$nextTick(function(){ 此处填第一次渲染完成后执行的代码 }) }, updated:function(){ this.$nextTick(function(){ 此处填每次渲染完后执行的代码 }) }})