Merge pull request #815 from dod-ccpo/add-new-env-app-settings

Add New Environment via app settings
This commit is contained in:
montana-mil
2019-05-15 11:30:29 -04:00
committed by GitHub
14 changed files with 193 additions and 48 deletions

View File

@@ -0,0 +1,24 @@
import FormMixin from '../../mixins/form'
import textinput from '../text_input'
export default {
name: 'new-environment',
mixins: [FormMixin],
components: {
textinput,
},
data: function() {
return {
open: false,
}
},
methods: {
toggle: function() {
this.open = !this.open
},
},
}