atst/js/components/clin_fields.js
2019-06-10 12:36:57 -04:00

20 lines
300 B
JavaScript

import DateSelector from './date_selector'
import textinput from './text_input'
export default {
name: 'clin-fields',
components: {
DateSelector,
textinput,
},
props: {
initialClinIndex: Number,
},
data: function() {
return { clinIndex: this.initialClinIndex }
},
}