{{ publishDate }} at {{ publishTime }}
```
This must be registered in the vue component registry at the editor:
```js
liEditor.vueComponentRegistry.registerComponent({
type: 'tableDashboardCell',
name: 'customPublishTimeCell',
component: require('../custom-publish-time-cell.vue').default
})
```
And can be configured for use in a Table Dashboard in the Project Config editor in the [editor settings](/reference/project-config/editor-settings/llms.txt) in the server:
```js
columns: [
{
label: 'Article',
minWidth: 375,
growFactor: 2,
priority: 1,
componentName: 'liTableDashboardCellMain',
componentOptions: {
image: {
metadataPropertyName: 'teaserImage'
},
clampTitle: false,
showContentType: true
}
},
{
label: 'Publish Time',
componentName: 'customPublishTimeCell',
minWidth: 200,
growFactor: 0,
priority: 2,
componentOptions: {
// Custom options passed to the component
}
},
{
label: 'Category',
metadataPropertyName: 'category',
editable: false,
minWidth: 200,
growFactor: 0,
priority: 3
}
]
```
This dashboard is pictured above and has three columns - the document title with a teaser image, scheduled publish time and the category.