Skip to content

Commit 04b4703

Browse files
committed
fix(sfc): fix sfc name inference type check
fix #12637
1 parent 018d29a commit 04b4703

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

src/core/components/keep-alive.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { getFirstComponentChild } from 'core/vdom/helpers/index'
33
import type VNode from 'core/vdom/vnode'
44
import type { VNodeComponentOptions } from 'types/vnode'
55
import type { Component } from 'types/component'
6+
import { getComponentName } from '../vdom/create-component'
67

78
type CacheEntry = {
89
name?: string
@@ -12,8 +13,8 @@ type CacheEntry = {
1213

1314
type CacheEntryMap = Record<string, CacheEntry | null>
1415

15-
function getComponentName(opts?: VNodeComponentOptions): string | null {
16-
return opts && (opts.Ctor.options.name || opts.tag)
16+
function _getComponentName(opts?: VNodeComponentOptions): string | null {
17+
return opts && (getComponentName(opts.Ctor.options as any) || opts.tag)
1718
}
1819

1920
function matches(
@@ -81,7 +82,7 @@ export default {
8182
if (vnodeToCache) {
8283
const { tag, componentInstance, componentOptions } = vnodeToCache
8384
cache[keyToCache] = {
84-
name: getComponentName(componentOptions),
85+
name: _getComponentName(componentOptions),
8586
tag,
8687
componentInstance
8788
}
@@ -126,7 +127,7 @@ export default {
126127
const componentOptions = vnode && vnode.componentOptions
127128
if (componentOptions) {
128129
// check pattern
129-
const name = getComponentName(componentOptions)
130+
const name = _getComponentName(componentOptions)
130131
const { include, exclude } = this
131132
if (
132133
// not included

src/core/global-api/extend.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { Component } from 'types/component'
33
import type { GlobalAPI } from 'types/global-api'
44
import { defineComputed, proxy } from '../instance/state'
55
import { extend, mergeOptions, validateComponentName } from '../util/index'
6+
import { getComponentName } from '../vdom/create-component'
67

78
export function initExtend(Vue: GlobalAPI) {
89
/**
@@ -25,7 +26,8 @@ export function initExtend(Vue: GlobalAPI) {
2526
return cachedCtors[SuperId]
2627
}
2728

28-
const name = extendOptions.name || Super.options.name
29+
const name =
30+
getComponentName(extendOptions) || getComponentName(Super.options)
2931
if (__DEV__ && name) {
3032
validateComponentName(name)
3133
}

src/core/util/debug.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import config from '../config'
22
import { noop, isArray, isFunction } from 'shared/util'
33
import type { Component } from 'types/component'
44
import { currentInstance } from 'v3/currentInstance'
5+
import { getComponentName } from '../vdom/create-component'
56

67
export let warn: (msg: string, vm?: Component | null) => void = noop
78
export let tip = noop
@@ -40,7 +41,7 @@ if (__DEV__) {
4041
: vm._isVue
4142
? vm.$options || (vm.constructor as any).options
4243
: vm
43-
let name = options.name || options._componentTag
44+
let name = getComponentName(options)
4445
const file = options.__file
4546
if (!name && file) {
4647
const match = file.match(/([^/\\]+)\.vue$/)

src/core/vdom/create-component.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ import type {
2828
import type { Component } from 'types/component'
2929
import type { ComponentOptions, InternalComponentOptions } from 'types/options'
3030

31+
export function getComponentName(options: ComponentOptions) {
32+
return options.name || options.__name || options._componentTag
33+
}
34+
3135
// inline hooks to be invoked on component VNodes during patch
3236
const componentVNodeHooks = {
3337
init(vnode: VNodeWithData, hydrating: boolean): boolean | void {
@@ -188,7 +192,7 @@ export function createComponent(
188192

189193
// return a placeholder vnode
190194
// @ts-expect-error
191-
const name = Ctor.options.name || tag
195+
const name = getComponentName(Ctor.options) || tag
192196
const vnode = new VNode(
193197
// @ts-expect-error
194198
`vue-component-${Ctor.cid}${name ? `-${name}` : ''}`,

src/platforms/web/runtime/components/transition-group.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import {
2323
} from 'web/runtime/transition-util'
2424
import VNode from 'core/vdom/vnode'
2525
import { VNodeWithData } from 'types/vnode'
26+
import { getComponentName } from 'core/vdom/create-component'
2627

2728
const props = extend(
2829
{
@@ -72,7 +73,7 @@ export default {
7273
} else if (__DEV__) {
7374
const opts = c.componentOptions
7475
const name: string = opts
75-
? opts.Ctor.options.name || opts.tag || ''
76+
? getComponentName(opts.Ctor.options as any) || opts.tag || ''
7677
: c.tag
7778
warn(`<transition-group> children must be keyed: <${name}>`)
7879
}

types/options.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ export interface ComponentOptions<
219219
parent?: Vue
220220
mixins?: (ComponentOptions<Vue> | typeof Vue)[]
221221
name?: string
222+
// for SFC auto name inference w/ ts-loader check
223+
__name?: string
222224
// TODO: support properly inferred 'extends'
223225
extends?: ComponentOptions<Vue> | typeof Vue
224226
delimiters?: [string, string]

0 commit comments

Comments
 (0)