Files
mixtape/zero.Debug/Renderers/module.headline.js
T

34 lines
643 B
JavaScript
Raw Normal View History

2020-08-17 16:10:02 +02:00
export default {
2020-08-20 01:35:08 +02:00
alias: 'module.headline',
2020-08-17 16:10:02 +02:00
// define layouts users can switch between
layouts: [
{
label: 'Default',
preview: '/images/rte-layout1.png'
},
{
label: 'Big',
preview: '/images/rte-layout2.png'
},
],
// define a preview which is rendered in the overview
preview: {
2020-08-20 14:35:08 +02:00
template: '<ui-module-preview-headline :text="model.headline" :subline="model.subline" />'
2020-08-17 16:10:02 +02:00
},
fields: [
{
2020-08-20 01:35:08 +02:00
field: 'headline',
display: 'text',
label: 'Headline',
2020-08-17 16:10:02 +02:00
required: true
},
{
2020-08-20 01:35:08 +02:00
field: 'subline',
display: 'text',
label: 'Subline'
},
2020-08-17 16:10:02 +02:00
]
};