fix(CellGroup): failed to inherit scopeId with title (#12328)

This commit is contained in:
neverland 2023-09-29 21:28:07 +08:00 committed by GitHub
parent 24e9176433
commit 0c4ecc93e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import { defineComponent, type ExtractPropTypes } from 'vue';
import { truthProp, createNamespace, BORDER_TOP_BOTTOM } from '../utils';
import { useScopeId } from '../composables/use-scope-id';
const [name, bem] = createNamespace('cell-group');
@ -26,6 +27,7 @@ export default defineComponent({
{ [BORDER_TOP_BOTTOM]: props.border && !props.inset },
]}
{...attrs}
{...useScopeId()}
>
{slots.default?.()}
</div>