15 lines
294 B
JavaScript
15 lines
294 B
JavaScript
import Card from './Card'
|
|
import Meta from './Meta'
|
|
import Grid from './Grid'
|
|
Card.Meta = Meta
|
|
Card.Grid = Grid
|
|
|
|
/* istanbul ignore next */
|
|
Card.install = function (Vue) {
|
|
Vue.component(Card.name, Card)
|
|
Vue.component(Meta.name, Meta)
|
|
Vue.component(Grid.name, Grid)
|
|
}
|
|
|
|
export default Card
|