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...
-
<div id="employeement_more"> <div class="row employeementAppendDiv" style="border-top: 1px dotted #d...
-
step-1: HTML <div class="row"> <div class="col-lg-12"> <d...
-
Delete btn: <a href="{!!route('news-letter-delete',$row->id )!!}" class="btn btn-danger deleteBtn pull-right p...
No comments:
Post a Comment