hongluan-ui
Version:
Hongluan Component Library for Vue 3
47 lines (44 loc) • 1 kB
JavaScript
import '../../../utils/index.mjs';
import { tourContentProps } from './content2.mjs';
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const tourStepProps = buildProps({
target: {
type: definePropType([String, Object, Function])
},
title: String,
description: String,
showClose: {
type: Boolean,
default: void 0
},
showArrow: {
type: Boolean,
default: void 0
},
placement: tourContentProps.placement,
mask: {
type: definePropType([Boolean, Object]),
default: void 0
},
contentStyle: {
type: definePropType([Object])
},
prevButtonProps: {
type: definePropType(Object)
},
nextButtonProps: {
type: definePropType(Object)
},
scrollIntoViewOptions: {
type: definePropType([Boolean, Object]),
default: void 0
},
type: {
type: definePropType(String)
}
});
const tourStepEmits = {
close: () => true
};
export { tourStepEmits, tourStepProps };
//# sourceMappingURL=step.mjs.map