mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-20 21:04:34 +00:00
20 lines
396 B
JavaScript
20 lines
396 B
JavaScript
import Vue from 'vue'
|
|
import Card from './Card'
|
|
import Child from './Child'
|
|
import Button from './Button'
|
|
import Checkbox from './Checkbox'
|
|
import { HasError, AlertError, AlertSuccess } from 'vform'
|
|
|
|
// Components that are registered globaly.
|
|
[
|
|
Card,
|
|
Child,
|
|
Button,
|
|
Checkbox,
|
|
HasError,
|
|
AlertError,
|
|
AlertSuccess
|
|
].forEach(Component => {
|
|
Vue.component(Component.name, Component)
|
|
})
|