created: function () {
this.getdata();
let that = this;
this.time = window.setInterval(() => {
setTimeout(() => {
that.getdata();
}, 0)
}, 1500)
},
destroyed() {
clearInterval(this.time);
},
created: function () {
this.getdata();
let that = this;
this.time = window.setInterval(() => {
setTimeout(() => {
that.getdata();
}, 0)
}, 1500)
},
destroyed() {
clearInterval(this.time);
},