mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
import Vue from 'vue'
|
||
|
import Button from './Button'
|
||
|
|
||
|
// Components that are registered globaly.
|
||
|
[
|
||
|
Button,
|
||
|
].forEach(Component => {
|
||
|
Vue.component(Component.name, Component)
|
||
|
})
|