index.js 362 B

123456789101112131415
  1. /**
  2. * Created by Andste on 2021/8/18.
  3. * 采购计划选择器
  4. * 依赖于element-ui
  5. */
  6. import Vue from 'vue'
  7. import PickerGoods from './src/main.vue'
  8. import PickerGoodsPicker from './src/main.js'
  9. PickerGoods.install = function() {
  10. Vue.component(PickerGoods.name, PickerGoods)
  11. }
  12. Vue.prototype.$EnPickerGoods = PickerGoodsPicker
  13. export default PickerGoods