I would write method for that, and then where you need to format number you can just put method in template and pass value down
methods: {
formatNumber(value) {
let val = (value/1).toFixed(2).replace(',', '.')
return val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")
},
}
And then in template:
<template>
<div>
<div class="panel-group"v-for="(value,index) in list">
<div class="col-md-8">
<small>
Total: <b>{{formatNumber (value.total) }}</b>
</small>
</div>
</div>
</div>
</template>
Subscribe to:
Post Comments (Atom)
Ajax load lage with laravel.
step-1: HTML <div class="row"> <div class="col-lg-12"> <d...
-
<template > <tr v-for="(item, i) in list"> <td :rowspan="item.same_num" ...
-
HTML: @foreach($user-> as $key => $row) <tr class="{{$row->id}}"> ...
-
HTML <select class="form-control" data-selectField="sales_invoices_customer_id" id="sales_invoices_customer_id...
No comments:
Post a Comment