Skip to content

Commit 5e3d4e9

Browse files
authored
fix(compiler-sfc): fix template usage check edge case for v-slot destructured default value (#12842)
fix #12841
1 parent 5aed733 commit 5e3d4e9

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

packages/compiler-sfc/src/compileScript.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import { walk } from 'estree-walker'
3939
import { RawSourceMap } from 'source-map'
4040
import { warnOnce } from './warn'
4141
import { isReservedTag } from 'web/util'
42-
import { bindRE, dirRE, onRE } from 'compiler/parser'
42+
import { bindRE, dirRE, onRE, slotRE } from 'compiler/parser'
4343
import { parseText } from 'compiler/parser/text-parser'
4444
import { DEFAULT_FILENAME } from './parseComponent'
4545
import {
@@ -1804,6 +1804,8 @@ function resolveTemplateUsageCheckString(sfc: SFCDescriptor, isTS: boolean) {
18041804
if (dirRE.test(name)) {
18051805
const baseName = onRE.test(name)
18061806
? 'on'
1807+
: slotRE.test(name)
1808+
? 'slot'
18071809
: bindRE.test(name)
18081810
? 'bind'
18091811
: name.replace(dirRE, '')

packages/compiler-sfc/test/compileScript.spec.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1574,5 +1574,21 @@ describe('SFC analyze <script> bindings', () => {
15741574
</template>
15751575
`)
15761576
})
1577+
1578+
// #12841
1579+
test('should not error when performing ts expression check for v-slot destructured default value', () => {
1580+
compile(`
1581+
<script setup lang="ts">
1582+
import FooComp from './Foo.vue'
1583+
</script>
1584+
<template>
1585+
<FooComp>
1586+
<template #bar="{ bar = { baz: '' } }">
1587+
{{ bar.baz }}
1588+
</template>
1589+
</FooComp>
1590+
</template>
1591+
`)
1592+
})
15771593
})
15781594
})

src/compiler/parser/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const bindRE = /^:|^\.|^v-bind:/
4242
const propBindRE = /^\./
4343
const modifierRE = /\.[^.\]]+(?=[^\]]*$)/g
4444

45-
const slotRE = /^v-slot(:|$)|^#/
45+
export const slotRE = /^v-slot(:|$)|^#/
4646

4747
const lineBreakRE = /[\r\n]/
4848
const whitespaceRE = /[ \f\t\r\n]+/g

0 commit comments

Comments
 (0)