mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-24 01:03:35 +01:00
12 lines
231 B
JavaScript
Vendored
12 lines
231 B
JavaScript
Vendored
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)
|
|
})
|