chore: lintfix
This commit is contained in:
parent
269a961eed
commit
8dfbd31ebb
|
@ -20,14 +20,14 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
computed: {
|
computed: {
|
||||||
currencyText() {
|
currencyText() {
|
||||||
if (this.$store.state.currency.greaterThan(1e7)) {
|
if (this.$store.state.currency.greaterThan(1e7)) {
|
||||||
return this.$store.state.currency.toString()
|
return this.$store.state.currency.toString()
|
||||||
}
|
}
|
||||||
return Math.floor(this.$store.state.currency)
|
return Math.floor(this.$store.state.currency)
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Reference in New Issue