You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
303 B
15 lines
303 B
6 years ago
|
import Card from './Card';
|
||
|
import Meta from './Meta';
|
||
|
import Grid from './Grid';
|
||
|
Card.Meta = Meta;
|
||
|
Card.Grid = Grid;
|
||
6 years ago
|
|
||
|
/* istanbul ignore next */
|
||
4 years ago
|
Card.install = function(app) {
|
||
|
app.component(Card.name, Card);
|
||
|
app.component(Meta.name, Meta);
|
||
|
app.component(Grid.name, Grid);
|
||
6 years ago
|
};
|
||
6 years ago
|
|
||
6 years ago
|
export default Card;
|