import DateSelector from './date_selector' import optionsinput from './options_input' import textinput from './text_input' export default { name: 'clin-fields', components: { DateSelector, optionsinput, textinput, }, props: { clinIndex: String, }, // get clin index from props and pass into template template: `
Start Date

End Date

`, }