mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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),
|
minZoom: makeNumericProp(1 / 3),
|
||||||
maxZoom: makeNumericProp(3),
|
maxZoom: makeNumericProp(3),
|
||||||
overlay: truthProp,
|
overlay: truthProp,
|
||||||
|
vertical: Boolean,
|
||||||
closeable: Boolean,
|
closeable: Boolean,
|
||||||
showIndex: truthProp,
|
showIndex: truthProp,
|
||||||
className: unknownProp,
|
className: unknownProp,
|
||||||
@ -159,6 +160,7 @@ export default defineComponent({
|
|||||||
lazyRender
|
lazyRender
|
||||||
loop={props.loop}
|
loop={props.loop}
|
||||||
class={bem('swipe')}
|
class={bem('swipe')}
|
||||||
|
vertical={props.vertical}
|
||||||
duration={props.swipeDuration}
|
duration={props.swipeDuration}
|
||||||
initialSwipe={props.startPosition}
|
initialSwipe={props.startPosition}
|
||||||
showIndicators={props.showIndicators}
|
showIndicators={props.showIndicators}
|
||||||
|
@ -14,6 +14,7 @@ export type ImagePreviewOptions = {
|
|||||||
images: string[];
|
images: string[];
|
||||||
maxZoom?: number;
|
maxZoom?: number;
|
||||||
minZoom?: number;
|
minZoom?: number;
|
||||||
|
vertical?: boolean;
|
||||||
teleport?: TeleportProps['to'];
|
teleport?: TeleportProps['to'];
|
||||||
className?: unknown;
|
className?: unknown;
|
||||||
showIndex?: boolean;
|
showIndex?: boolean;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user