mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { ImagePreview as VanImagePreview, showImagePreview } from 'vant';
|
|
import type { App } from 'vue';
|
|
|
|
export const ImagePreview = (...args: Parameters<typeof showImagePreview>) =>
|
|
showImagePreview(...args);
|
|
|
|
ImagePreview.Component = VanImagePreview;
|
|
|
|
ImagePreview.install = (app: App) => {
|
|
app.use(ImagePreview.Component);
|
|
};
|