标签:bsp 函数 执行函数 tick var put div 定时执行函数 func
var app = new Vue({ el: ‘#app‘, data: { count: 1, }, filters: { }, mounted: function () { this.$nextTick(function () { setInterval(this.timer, 1000); }) }, methods: { timer: function () { if (this.count > 0) { this.count++; } } }, watch: { }, computed: { } });
标签:bsp 函数 执行函数 tick var put div 定时执行函数 func
原文地址:http://www.cnblogs.com/lunawzh/p/7859266.html