Mój komponent Vue wygląda tak:
<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>
Wynik {{ item.total }}
jest
26000000
Ale chcę sformatować to tak:
26.000.000,00
W jquery lub javascript mogę to zrobić
Ale jak to zrobić w komponencie vue?