mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 19:18:07 +08:00
15 lines
303 B
JavaScript
15 lines
303 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;
|