Autofix on save

This commit is contained in:
Adam Stachowicz
2021-07-27 19:47:13 +02:00
parent 8331e795e7
commit 9648d700d7
29 changed files with 1182 additions and 1089 deletions

View File

@@ -5,7 +5,7 @@
<script>
import {sleep} from '../util-frontend'
import { sleep } from "../util-frontend"
export default {
@@ -18,11 +18,7 @@ export default {
unit: {
String,
default: "ms",
}
},
mounted() {
this.output = this.value;
},
},
data() {
@@ -32,14 +28,10 @@ export default {
}
},
methods: {
},
computed: {
isNum() {
return typeof this.value === 'number'
}
return typeof this.value === "number"
},
},
watch: {
@@ -61,6 +53,12 @@ export default {
},
},
mounted() {
this.output = this.value;
},
methods: {},
}
</script>