@@ -1841,7 +1841,7 @@ function processExp(exp: string, isTS: boolean, dir?: string): string {
if (dir === 'slot') {
exp = `(${exp})=>{}`
} else if (dir === 'on') {
- exp = `()=>{${exp}}`
+ exp = `()=>{return ${exp}}`
} else if (dir === 'for') {
const inMatch = exp.match(forAliasRE)
if (inMatch) {