remove the temp state from App

This commit is contained in:
2017-02-14 20:23:28 -07:00
parent e6941b59d0
commit 0a14321a06

View File

@@ -45,19 +45,6 @@
<script>
export default {
name: 'App',
data() {
return {
count: 0
};
},
mounted() {
this.interval = setInterval(() => {
this.count += 1;
}, 1000);
},
destroyed() {
clearInterval(this.interval);
}
}
</script>