20 lines
302 B
JavaScript
20 lines
302 B
JavaScript
import FormMixin from '../../../mixins/form'
|
|
import textinput from '../../text_input'
|
|
import * as R from 'ramda'
|
|
|
|
export default {
|
|
name: 'application-name-and-description',
|
|
|
|
mixins: [FormMixin],
|
|
|
|
components: {
|
|
textinput,
|
|
},
|
|
|
|
data: function() {
|
|
return {
|
|
errors: [],
|
|
}
|
|
},
|
|
}
|