index.js 243 B

12345678910111213
  1. /**
  2. * Created by Andste on 2018/5/28.
  3. * 地区选择组件
  4. */
  5. import Vue from 'vue'
  6. import RegionPicker from './src/main'
  7. RegionPicker.install = function() {
  8. Vue.component(RegionPicker.name, RegionPicker)
  9. }
  10. export default RegionPicker