feat(ImagePreview): add vertical prop (#12660)

Co-authored-by: sunguohui <sunguohui@vcom.com>
This commit is contained in:
2024-03-09 18:28:45 +08:00 committed by GitHub
parent c134bdb7d3
commit c42bbcfc61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,7 @@ export const imagePreviewProps = {
minZoom: makeNumericProp(1 / 3),
maxZoom: makeNumericProp(3),
overlay: truthProp,
vertical: Boolean,
closeable: Boolean,
showIndex: truthProp,
className: unknownProp,
@ -159,6 +160,7 @@ export default defineComponent({
lazyRender
loop={props.loop}
class={bem('swipe')}
vertical={props.vertical}
duration={props.swipeDuration}
initialSwipe={props.startPosition}
showIndicators={props.showIndicators}

View File

@ -14,6 +14,7 @@ export type ImagePreviewOptions = {
images: string[];
maxZoom?: number;
minZoom?: number;
vertical?: boolean;
teleport?: TeleportProps['to'];
className?: unknown;
showIndex?: boolean;