mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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 { POPUP_TOGGLE_KEY } from '../composables/on-popup-reopen';
|
||||
import { useGlobalZIndex } from '../composables/use-global-z-index';
|
||||
import { useScopeId } from '../composables/use-scope-id';
|
||||
|
||||
// Components
|
||||
import { Icon } from '../icon';
|
||||
@ -143,6 +144,7 @@ export default defineComponent({
|
||||
customStyle={props.overlayStyle}
|
||||
role={props.closeOnClickOverlay ? 'button' : undefined}
|
||||
tabindex={props.closeOnClickOverlay ? 0 : undefined}
|
||||
{...useScopeId()}
|
||||
onClick={onClickOverlay}
|
||||
/>
|
||||
);
|
||||
@ -205,6 +207,7 @@ export default defineComponent({
|
||||
]}
|
||||
onKeydown={onKeydown}
|
||||
{...attrs}
|
||||
{...useScopeId()}
|
||||
>
|
||||
{slots.default?.()}
|
||||
{renderCloseIcon()}
|
||||
|
Loading…
x
Reference in New Issue
Block a user