index.js 136 B

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