mirror of https://github.com/vuejs/core.git
chore(compat): rename legacyresolveScopedSlots to legacyResolveScopedSlots
The changes correct the casing of a function name from legacyresolveScopedSlots to legacyResolveScopedSlots in both its definition and usage. No logic, control flow, or public API behavior is altered; only the symbol's casing is updated for consistency.
This commit is contained in:
parent
a48ffdad65
commit
952886e299
|
@ -33,7 +33,7 @@ import {
|
|||
legacyPrependModifier,
|
||||
legacyRenderSlot,
|
||||
legacyRenderStatic,
|
||||
legacyresolveScopedSlots,
|
||||
legacyResolveScopedSlots,
|
||||
} from './renderHelpers'
|
||||
import { resolveFilter } from '../helpers/resolveAssets'
|
||||
import type { Slots } from '../componentSlots'
|
||||
|
@ -183,7 +183,7 @@ export function installCompatInstanceProperties(
|
|||
_b: () => legacyBindObjectProps,
|
||||
_v: () => createTextVNode,
|
||||
_e: () => createCommentVNode,
|
||||
_u: () => legacyresolveScopedSlots,
|
||||
_u: () => legacyResolveScopedSlots,
|
||||
_g: () => legacyBindObjectListeners,
|
||||
_d: () => legacyBindDynamicKeys,
|
||||
_p: () => legacyPrependModifier,
|
||||
|
|
|
@ -87,7 +87,7 @@ type LegacyScopedSlotsData = Array<
|
|||
| LegacyScopedSlotsData
|
||||
>
|
||||
|
||||
export function legacyresolveScopedSlots(
|
||||
export function legacyResolveScopedSlots(
|
||||
fns: LegacyScopedSlotsData,
|
||||
raw?: Record<string, Slot>,
|
||||
// the following are added in 2.6
|
||||
|
|
Loading…
Reference in New Issue