index.js 166 B

123456789
  1. import VxeList from './src/list'
  2. export const List = Object.assign(VxeList, {
  3. install (Vue) {
  4. Vue.component(VxeList.name, VxeList)
  5. }
  6. })
  7. export default List