Skip to content

Commit 769e555

Browse files
committedJul 4, 2022
fix(compiler-sfc): fix template usage check edge case for v-on statements
ref: vuejs/vue#12591
1 parent fb3bfde commit 769e555

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎packages/compiler-sfc/__tests__/compileScript.spec.ts

+13
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,19 @@ defineExpose({ foo: 123 })
461461
expect(content).toMatch(`return { a, b, Baz }`)
462462
assertCode(content)
463463
})
464+
465+
// vuejs/vue#12591
466+
test('v-on inline statement', () => {
467+
// should not error
468+
compile(`
469+
<script setup lang="ts">
470+
import { foo } from './foo'
471+
</script>
472+
<template>
473+
<div @click="$emit('update:a');"></div>
474+
</tempalte>
Has a conversation. Original line has a conversation.
475+
`)
476+
})
464477
})
465478

466479
describe('inlineTemplate mode', () => {

‎packages/compiler-sfc/src/compileScript.ts

+2
Original file line numberDiff line numberDiff line change
@@ -2134,6 +2134,8 @@ function processExp(exp: string, dir?: string): string {
21342134
if (/ as\s+\w|<.*>|:/.test(exp)) {
21352135
if (dir === 'slot') {
21362136
exp = `(${exp})=>{}`
2137+
} else if (dir === 'on') {
2138+
exp = `()=>{${exp}}`
21372139
} else if (dir === 'for') {
21382140
const inMatch = exp.match(forAliasRE)
21392141
if (inMatch) {

0 commit comments

Comments
 (0)
Please sign in to comment.