fix(compiler-sfc): support @vue-ignore comment on more type sources

This commit is contained in:
Evan You 2024-06-14 17:46:50 +02:00
parent a476692ed2
commit a23e99bedf
No known key found for this signature in database
GPG Key ID: B9D421896CA450FB
2 changed files with 18 additions and 6 deletions

View File

@ -137,6 +137,18 @@ describe('resolveType', () => {
})
})
test('intersection type with ignore', () => {
expect(
resolve(`
type Foo = { foo: number }
type Bar = { bar: string }
defineProps<Foo & /* @vue-ignore */ Bar>()
`).props,
).toStrictEqual({
foo: ['Number'],
})
})
// #7553
test('union type', () => {
expect(

View File

@ -165,6 +165,12 @@ function innerResolveTypeElements(
scope: TypeScope,
typeParameters?: Record<string, Node>,
): ResolvedElements {
if (
node.leadingComments &&
node.leadingComments.some(c => c.value.includes('@vue-ignore'))
) {
return { props: {} }
}
switch (node.type) {
case 'TSTypeLiteral':
return typeElementsToMap(ctx, node.members, scope, typeParameters)
@ -414,12 +420,6 @@ function resolveInterfaceMembers(
)
if (node.extends) {
for (const ext of node.extends) {
if (
ext.leadingComments &&
ext.leadingComments.some(c => c.value.includes('@vue-ignore'))
) {
continue
}
try {
const { props, calls } = resolveTypeElements(ctx, ext, scope)
for (const key in props) {