index.js 163 B

12345678
  1. const Step = require('../steps/src/step');
  2. /* istanbul ignore next */
  3. Step.install = function(Vue) {
  4. Vue.component(Step.name, Step);
  5. };
  6. module.exports = Step;