NumberFormatColumnComponent
This component allows you to number format column
Example

<template>
<div>
<section>
<server-table-component
data-url="/services"
v-bind="servicesDefinition"
/>
</section>
</div>
</template>;
export default {
name: "App",
data() {
return {
servicesDefinition: {
vtable: {
headers: [
{
text: "Service Id",
value: "service_Id",
align: "left",
render: {
type: NumberFormatColumnComponent,
props: {
serverFormat: 16,
},
},
sortable: true,
class: "white-space-nowrap",
},
],
},
},
};
},
};
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| value | - | String / Number | false | - |
| serverFormat | - | Number | false | 16 |
| fallbackValue | - | String | false | "----" |
| paddingNumber | - | Number | false | 4 |