mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
feat(ImagePreview): add vertical prop (#12660)
Co-authored-by: sunguohui <sunguohui@vcom.com>
This commit is contained in:
parent
c134bdb7d3
commit
c42bbcfc61
@ -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}
|
||||
|
@ -14,6 +14,7 @@ export type ImagePreviewOptions = {
|
||||
images: string[];
|
||||
maxZoom?: number;
|
||||
minZoom?: number;
|
||||
vertical?: boolean;
|
||||
teleport?: TeleportProps['to'];
|
||||
className?: unknown;
|
||||
showIndex?: boolean;
|
||||
|
Loading…
x
Reference in New Issue
Block a user