UNPKG

address-element-vues

Version:

基于elementUi的vue 省市区三级联动组件 ,返回省市id与名称,可以清除所有,可以搜索

14 lines (13 loc) 377 B
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' Vue.config.productionTip = false import addressSelect from './index' Vue.use(addressSelect) /* eslint-disable no-new */ new Vue({ el: '#app', components: { App }, template: '<App/>' })