UNPKG

vue-ant-patterns

Version:

vue-ant-patterns

11 lines (8 loc) 202 B
import List from './list'; import Item from './item'; List.ListItem = Item; List.install = function (Vue) { Vue.component(List.name, List); Vue.component(Item.name, Item); }; export default List;