mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Popup): fix failed to inherit scopedId (#12327)
This commit is contained in:
parent
c24b7f7d80
commit
24e9176433
8
packages/vant/src/composables/use-scope-id.ts
Normal file
8
packages/vant/src/composables/use-scope-id.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { getCurrentInstance } from 'vue';
|
||||||
|
|
||||||
|
// Fix failed to get scopeId when using teleport & fragment
|
||||||
|
// https://github.com/vuejs/core/issues/2669
|
||||||
|
export const useScopeId = () => {
|
||||||
|
const { scopeId } = getCurrentInstance()?.vnode || {};
|
||||||
|
return scopeId ? { [scopeId]: '' } : null;
|
||||||
|
};
|
@ -32,6 +32,7 @@ import { useLockScroll } from '../composables/use-lock-scroll';
|
|||||||
import { useLazyRender } from '../composables/use-lazy-render';
|
import { useLazyRender } from '../composables/use-lazy-render';
|
||||||
import { POPUP_TOGGLE_KEY } from '../composables/on-popup-reopen';
|
import { POPUP_TOGGLE_KEY } from '../composables/on-popup-reopen';
|
||||||
import { useGlobalZIndex } from '../composables/use-global-z-index';
|
import { useGlobalZIndex } from '../composables/use-global-z-index';
|
||||||
|
import { useScopeId } from '../composables/use-scope-id';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { Icon } from '../icon';
|
import { Icon } from '../icon';
|
||||||
@ -143,6 +144,7 @@ export default defineComponent({
|
|||||||
customStyle={props.overlayStyle}
|
customStyle={props.overlayStyle}
|
||||||
role={props.closeOnClickOverlay ? 'button' : undefined}
|
role={props.closeOnClickOverlay ? 'button' : undefined}
|
||||||
tabindex={props.closeOnClickOverlay ? 0 : undefined}
|
tabindex={props.closeOnClickOverlay ? 0 : undefined}
|
||||||
|
{...useScopeId()}
|
||||||
onClick={onClickOverlay}
|
onClick={onClickOverlay}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@ -205,6 +207,7 @@ export default defineComponent({
|
|||||||
]}
|
]}
|
||||||
onKeydown={onKeydown}
|
onKeydown={onKeydown}
|
||||||
{...attrs}
|
{...attrs}
|
||||||
|
{...useScopeId()}
|
||||||
>
|
>
|
||||||
{slots.default?.()}
|
{slots.default?.()}
|
||||||
{renderCloseIcon()}
|
{renderCloseIcon()}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user