This commit is contained in:
syuilo 2018-06-12 02:18:29 +09:00
parent af0a0ef41b
commit 2e680c3d1e

View file

@ -49,7 +49,8 @@ export default Vue.extend({
polylinePoints: '', polylinePoints: '',
polygonPoints: '', polygonPoints: '',
headX: null, headX: null,
headY: null headY: null,
clock: null
}; };
}, },
watch: { watch: {
@ -59,6 +60,12 @@ export default Vue.extend({
}, },
created() { created() {
this.draw(); this.draw();
// VueWatch
this.clock = setInterval(this.draw, 1000);
},
beforeDestroy() {
clearInterval(this.clock);
}, },
methods: { methods: {
draw() { draw() {