Wrap forms in a vue component

This commit is contained in:
Bubka
2020-01-28 15:33:33 +01:00
parent d662a15f85
commit bbc51e4758
11 changed files with 407 additions and 452 deletions

View File

@ -1,11 +1,13 @@
import Vue from 'vue'
import Button from './Button'
import FieldError from './FieldError'
import FormWrapper from './FormWrapper'
// Components that are registered globaly.
[
Button,
FieldError,
FormWrapper,
].forEach(Component => {
Vue.component(Component.name, Component)
})