Browse Source

chore: fix typo (#4232)

Donny Wang 7 months ago
parent
commit
04f29614aa
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/@core/composables/src/use-priority-value.ts

+ 3 - 3
packages/@core/composables/src/use-priority-value.ts

@@ -26,13 +26,13 @@ export function usePriorityValue<
     // 通过判断原始props是否有值来判断是否传入
     const rawProps = (instance?.vnode?.props || {}) as T;
 
-    const standardRwaProps = {} as T;
+    const standardRawProps = {} as T;
 
     for (const [key, value] of Object.entries(rawProps)) {
-      standardRwaProps[kebabToCamelCase(key) as K] = value;
+      standardRawProps[kebabToCamelCase(key) as K] = value;
     }
     const propsKey =
-      standardRwaProps?.[key] === undefined ? undefined : props[key];
+      standardRawProps?.[key] === undefined ? undefined : props[key];
 
     // slot可以关闭
     return getFirstNonNullOrUndefined(