![](https://img.haomeiwen.com/i15793116/6f5363c8369c4173.png)
在IE上也是可以的。
![](https://img.haomeiwen.com/i15793116/6b82af24d453db04.png)
HTML部分:
<div class="time">{{date}}</div>
方法部分:
export default {
name: 'test',
data: function() {
return {
date: new Date(),
};
},
created() {
},
mounted() {
let that= this;
this.timer = setInterval(function() {
that.date = new Date().toLocaleString();
});
},
beforeDestroy: function() {
if (this.timer) {
clearInterval(this.timer);
}
},
methods: {
}
};
网友评论