mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
14 lines
288 B
JavaScript
Vendored
14 lines
288 B
JavaScript
Vendored
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)
|
|
})
|