Meine Vue-Komponente sieht folgendermaßen aus:
<template>
<div>
<div class="panel-group"v-for="item in list">
<div class="col-md-8">
<small>
Total: <b>{{ item.total }}</b>
</small>
</div>
</div>
</div>
</template>
<script>
export default {
...
computed: {
list: function() {
return this.$store.state.transaction.list
},
...
}
}
</script>
Das Ergebnis von {{ item.total }}
ist
26000000
Aber ich möchte, dass es so formatiert wird:
26.000.000,00
In jquery oder javascript kann ich es tun
Aber wie geht das in der Vue-Komponente?