mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
import { use } from '../utils';
|
|
import { emit, inherit } from '../utils/functional';
|
|
|
|
// Types
|
|
import { CreateElement, RenderContext } from 'vue/types';
|
|
import { DefaultSlots } from '../utils/use/sfc';
|
|
|
|
export type OverlayProps = {
|
|
zIndex?: number;
|
|
className?: any;
|
|
visible?: boolean;
|
|
customStyle?: object;
|
|
};
|
|
|
|
export type OverlayEvents = {
|
|
click(event: Event): void;
|
|
};
|
|
|
|
const [sfc, bem] = use('overlay');
|
|
|
|
function Overlay(
|
|
h: CreateElement,
|
|
props: OverlayProps,
|
|
slots: DefaultSlots,
|
|
ctx: RenderContext<OverlayProps>
|
|
) {
|
|
const style = {
|
|
zIndex: props.zIndex,
|
|
...props.customStyle
|
|
};
|
|
|
|
return (
|
|
<transition name="van-fade">
|
|
<div
|
|
vShow={props.visible}
|
|
style={style}
|
|
class={[bem(), props.className]}
|
|
onTouchmove={(event: TouchEvent) => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}}
|
|
{...inherit(ctx, true)}
|
|
/>
|
|
</transition>
|
|
);
|
|
}
|
|
|
|
Overlay.props = {
|
|
zIndex: Number,
|
|
className: null as any,
|
|
visible: Boolean,
|
|
customStyle: Object
|
|
};
|
|
|
|
export default sfc<OverlayProps, OverlayEvents>(Overlay);
|