1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-28 04:16:35 +08:00

chore(Overlay): use tsx

This commit is contained in:
chenjiahan 2020-10-09 20:56:32 +08:00
parent dffa11959a
commit 6319d44423
3 changed files with 9 additions and 8 deletions
src

@ -1,6 +1,6 @@
import { ref, watch, WatchSource, VNode } from 'vue';
import { ref, watch, WatchSource } from 'vue';
export function useLazyRender(show: WatchSource<boolean>) {
export function useLazyRender(show: WatchSource<boolean | undefined>) {
const inited = ref(false);
watch(
@ -13,5 +13,5 @@ export function useLazyRender(show: WatchSource<boolean>) {
{ immediate: true }
);
return (render: () => VNode) => () => (inited.value ? render() : null);
return (render: () => JSX.Element) => () => (inited.value ? render() : null);
}

@ -67,6 +67,7 @@ export default {
width: 120px;
height: 120px;
background-color: @white;
border-radius: 4px;
}
}
</style>

@ -1,4 +1,4 @@
import { Transition } from 'vue';
import { PropType, Transition, CSSProperties } from 'vue';
import { noop, isDef, preventDefault, createNamespace } from '../utils';
import { useLazyRender } from '../composition/use-lazy-render';
@ -10,7 +10,7 @@ export default createComponent({
zIndex: [Number, String],
duration: [Number, String],
className: null,
customStyle: Object,
customStyle: Object as PropType<CSSProperties>,
lockScroll: {
type: Boolean,
default: true,
@ -20,13 +20,13 @@ export default createComponent({
setup(props, { slots }) {
const lazyRender = useLazyRender(() => props.show);
const preventTouchMove = (event) => {
const preventTouchMove = (event: TouchEvent) => {
preventDefault(event, true);
};
const renderOverlay = lazyRender(() => {
const style = {
zIndex: props.zIndex,
const style: CSSProperties = {
zIndex: props.zIndex !== undefined ? +props.zIndex : undefined,
...props.customStyle,
};