mirror of
https://github.com/youzan/vant.git
synced 2025-10-18 09:24:25 +00: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);
|
|
};
|