16 lines
308 B
JavaScript
16 lines
308 B
JavaScript
|
import Vue from 'vue'
|
||
|
|
||
|
import Dropdown from './Dropdown'
|
||
|
import Card from './Card'
|
||
|
import Button from './Button'
|
||
|
import FancyLink from './FancyLink';
|
||
|
// Components that are registered globaly.
|
||
|
[
|
||
|
FancyLink,
|
||
|
Card,
|
||
|
Button,
|
||
|
Dropdown
|
||
|
].forEach(Component => {
|
||
|
Vue.component(Component.name, Component)
|
||
|
})
|