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.

14 lines
557 B

3 months ago
  1. import Tour from './src/tour2.mjs';
  2. import TourStep from './src/step2.mjs';
  3. export { tourEmits, tourProps } from './src/tour.mjs';
  4. export { tourStepEmits, tourStepProps } from './src/step.mjs';
  5. export { tourContentEmits, tourContentProps, tourPlacements, tourStrategies } from './src/content.mjs';
  6. import { withInstall, withNoopInstall } from '../../utils/vue/install.mjs';
  7. const ElTour = withInstall(Tour, {
  8. TourStep
  9. });
  10. const ElTourStep = withNoopInstall(TourStep);
  11. export { ElTour, ElTourStep, ElTour as default };
  12. //# sourceMappingURL=index.mjs.map