@@ -39,7 +39,7 @@ import { walk } from 'estree-walker'
39
39
import { RawSourceMap } from 'source-map'
40
40
import { warnOnce } from './warn'
41
41
import { isReservedTag } from 'web/util'
42
- import { dirRE } from 'compiler/parser'
42
+ import { bindRE , dirRE , onRE } from 'compiler/parser'
43
43
import { parseText } from 'compiler/parser/text-parser'
44
44
import { DEFAULT_FILENAME } from './parseComponent'
45
45
import {
@@ -278,23 +278,16 @@ export function compileScript(
278
278
local : string ,
279
279
imported : string | false ,
280
280
isType : boolean ,
281
- isFromSetup : boolean ,
282
- needTemplateUsageCheck : boolean
281
+ isFromSetup : boolean
283
282
) {
284
283
if ( source === 'vue' && imported ) {
285
284
userImportAlias [ imported ] = local
286
285
}
287
286
288
287
// template usage check is only needed in non-inline mode, so we can skip
289
288
// the work if inlineTemplate is true.
290
- let isUsedInTemplate = needTemplateUsageCheck
291
- if (
292
- needTemplateUsageCheck &&
293
- isTS &&
294
- sfc . template &&
295
- ! sfc . template . src &&
296
- ! sfc . template . lang
297
- ) {
289
+ let isUsedInTemplate = true
290
+ if ( isTS && sfc . template && ! sfc . template . src && ! sfc . template . lang ) {
298
291
isUsedInTemplate = isImportUsed ( local , sfc )
299
292
}
300
293
@@ -658,8 +651,7 @@ export function compileScript(
658
651
node . importKind === 'type' ||
659
652
( specifier . type === 'ImportSpecifier' &&
660
653
specifier . importKind === 'type' ) ,
661
- false ,
662
- true
654
+ false
663
655
)
664
656
}
665
657
} else if ( node . type === 'ExportDefaultDeclaration' ) {
@@ -872,7 +864,6 @@ export function compileScript(
872
864
node . importKind === 'type' ||
873
865
( specifier . type === 'ImportSpecifier' &&
874
866
specifier . importKind === 'type' ) ,
875
- true ,
876
867
true
877
868
)
878
869
}
@@ -1809,7 +1800,11 @@ function resolveTemplateUsageCheckString(sfc: SFCDescriptor) {
1809
1800
for ( let i = 0 ; i < attrs . length ; i ++ ) {
1810
1801
const { name, value } = attrs [ i ]
1811
1802
if ( dirRE . test ( name ) ) {
1812
- const baseName = name . replace ( dirRE , '' )
1803
+ const baseName = onRE . test ( name )
1804
+ ? 'on'
1805
+ : bindRE . test ( name )
1806
+ ? 'bind'
1807
+ : name . replace ( dirRE , '' )
1813
1808
if ( ! isBuiltInDir ( baseName ) ) {
1814
1809
code += `,v${ capitalize ( camelize ( baseName ) ) } `
1815
1810
}
@@ -1838,6 +1833,8 @@ function processExp(exp: string, dir?: string): string {
1838
1833
if ( / a s \s + \w | < .* > | : / . test ( exp ) ) {
1839
1834
if ( dir === 'slot' ) {
1840
1835
exp = `(${ exp } )=>{}`
1836
+ } else if ( dir === 'on' ) {
1837
+ exp = `()=>{${ exp } }`
1841
1838
} else if ( dir === 'for' ) {
1842
1839
const inMatch = exp . match ( forAliasRE )
1843
1840
if ( inMatch ) {
0 commit comments