element/packages/step/index.js

9 lines
163 B
JavaScript
Raw Normal View History

const Step = require('../steps/src/step');
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
Step.install = function(Vue) {
Vue.component(Step.name, Step);
};
module.exports = Step;