Add simplified Form component to Create vue

This commit is contained in:
Bubka
2020-01-20 17:16:08 +01:00
parent a0d6c9ace7
commit 540a4368f1
5 changed files with 459 additions and 26 deletions

View File

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