element-plus
Version:
A Component Library for Vue 3
50 lines (47 loc) • 1.07 kB
JavaScript
import { tourContentProps } from './content2.mjs';
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
import { iconPropType } from '../../../utils/vue/icon.mjs';
const tourStepProps = buildProps({
target: {
type: definePropType([String, Object, Function])
},
title: String,
description: String,
showClose: {
type: Boolean,
default: void 0
},
closeIcon: {
type: iconPropType
},
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=step2.mjs.map