我的Vue组件是这样的:
<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>
的结果{{ item.total }}
是
26000000
但是我想格式化它是这样的:
26.000.000,00
在jQuery或JavaScript中,我可以做到
但是,如何在vue组件中做到这一点?