You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
321 B
12 lines
321 B
// 导入自己需要的组件
|
|
import { Slider,Progress,Steps,Step,Select,Option } from 'element-ui'
|
|
const components = [Slider,Progress,Steps,Step,Select,Option]
|
|
const element = {
|
|
install: function (Vue) {
|
|
// Vue.use(Slider)
|
|
components.forEach(component => {
|
|
Vue.use(component)
|
|
})
|
|
}
|
|
}
|
|
export default element
|