Remove form mixin from toggler component

This commit is contained in:
leigh-mil
2019-11-13 14:08:51 -05:00
parent 3e57579990
commit 0abe27eb36
2 changed files with 13 additions and 12 deletions

View File

@@ -1,12 +1,10 @@
import FormMixin from '../mixins/form'
import optionsinput from './options_input'
import textinput from './text_input'
import BaseForm from './forms/base_form'
export default {
name: 'toggler',
mixins: [FormMixin],
props: {
initialSelectedSection: {
type: String,
@@ -18,6 +16,7 @@ export default {
optionsinput,
textinput,
optionsinput,
BaseForm,
toggler: this,
},