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