Answer the question
In order to leave comments, you need to log in
How to make a property in an object dynamic?
export default {
mainKey: '_id',
fields: {
_id: {
title: 'ID',
type: 'string',
},
pricingType: {
title: 'Pricing Type',
type: 'array',
editing: {
default: ['CPM'],
options: [{ value: 'CPM', label: 'CPM' }, { value: 'Rev Share', label: 'Rev Share' }],
},
},
pricingValue: {
title: 'Pricing Value',
type: 'float',
editing: {
max: 20,
},
},
},
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question