// dummy component - script export default { // components should have a name name: 'mc-dummy', props: { // componentId should have a default standarized name, can be overwritten on mount componentId: { default: 'mc-dummy-component', type: String }, // other props should also be declared - here, shorthand type message: String } };