mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 21:27:52 +08:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
import Steps from './src/steps';
|
|
import Step from './src/step';
|
|
|
|
/* istanbul ignore next */
|
|
export default function(Vue) {
|
|
Vue.component(Steps.name, Steps);
|
|
Vue.component(Step.name, Step);
|
|
};
|
|
|
|
export { Step, Steps };
|