ImageColumnComponent
This component allows you to image 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: ImageColumnComponent,
props: { basePath: null },
},
sortable: true,
class: "white-space-nowrap",
},
],
},
},
};
},
};
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| value | - | String / Object | false | "" |
| imgclass | - | String | false | "" |
| basePath | Let basePath empty and directly try to load image from value prop | String | false | "" |
| allowImageVisualization | - | Boolean | false | true |
| blankPageUrl | - | String | false | "" |
| titleProp | - | String | false | "title" |
| mediaProp | - | String | false | "media" |