Remove unused Vue component
This commit is contained in:
parent
d4facd1e36
commit
622234bc51
@ -1,29 +0,0 @@
|
||||
import FormMixin from '../../mixins/form'
|
||||
import textinput from '../text_input'
|
||||
import checkboxinput from '../checkbox_input'
|
||||
|
||||
export default {
|
||||
name: 'poc',
|
||||
|
||||
mixins: [FormMixin],
|
||||
|
||||
components: {
|
||||
textinput,
|
||||
checkboxinput,
|
||||
},
|
||||
|
||||
props: {
|
||||
initialData: {
|
||||
type: Object,
|
||||
default: () => ({}),
|
||||
},
|
||||
},
|
||||
|
||||
data: function() {
|
||||
const { am_poc = false } = this.initialData
|
||||
|
||||
return {
|
||||
am_poc,
|
||||
}
|
||||
},
|
||||
}
|
@ -12,7 +12,6 @@ import optionsinput from './components/options_input'
|
||||
import multicheckboxinput from './components/multi_checkbox_input'
|
||||
import textinput from './components/text_input'
|
||||
import checkboxinput from './components/checkbox_input'
|
||||
import poc from './components/forms/poc'
|
||||
import toggler from './components/toggler'
|
||||
import ApplicationEnvironments from './components/forms/new_application/environments'
|
||||
import MultiStepModalForm from './components/forms/multi_step_modal_form'
|
||||
@ -47,7 +46,6 @@ const app = new Vue({
|
||||
multicheckboxinput,
|
||||
textinput,
|
||||
checkboxinput,
|
||||
poc,
|
||||
ApplicationEnvironments,
|
||||
BudgetChart,
|
||||
SpendTable,
|
||||
|
Loading…
x
Reference in New Issue
Block a user