index.js 262 B

1234567891011121314
  1. /**
  2. * Created by Andste on 2018/5/28.
  3. * 商品选择器
  4. * 依赖于element-ui
  5. */
  6. import Vue from 'vue'
  7. import GoodsPicker from './src/main.vue'
  8. GoodsPicker.install = function() {
  9. Vue.component(GoodsPicker.name, GoodsPicker)
  10. }
  11. export default GoodsPicker