Skip to content

Commit

Permalink
fix(grid): change vnode.type
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Nov 21, 2023
1 parent d2db342 commit b19b6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packages/__VUE/grid/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export type GridProps = ExtractPropTypes<typeof gridProps>;
export const component = {
props: gridProps,
setup(props: GridProps, { slots }: SetupContext): RenderFunction {
useProvide(GRID_KEY, `${componentName}-item`)({ props });
useProvide(GRID_KEY, `NutGridItem`)({ props });

const rootClass = computed(() => {
const prefixCls = componentName;
Expand Down

0 comments on commit b19b6cb

Please sign in to comment.