TimeSpanColumnComponent
This component allows you to time span 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: TimeSpanColumnComponent,
props: {
displayFormat: "hh:mm:ss A",
},
},
sortable: true,
class: "white-space-nowrap",
},
],
},
},
};
},
};
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| value | - | Object | false | - |
| displayFormat | - | String | false | "hh:mm:ss A" |
| fallbackValue | Value fallback | String | false | "----" |