@@ -144,9 +144,9 @@ export default function PluginVue(userOptions: Partial<Options> = {}): Plugin {
144
144
const descriptor = getDescriptor ( query . filename )
145
145
const hasScoped = descriptor . styles . some ( ( s ) => s . scoped )
146
146
if ( query . src ) {
147
- this . addWatchFile ( query . filename ) ;
147
+ this . addWatchFile ( query . filename )
148
148
}
149
-
149
+
150
150
if ( query . type === 'template' ) {
151
151
debug ( `transform(${ id } )` )
152
152
const block = descriptor . template !
@@ -478,7 +478,7 @@ function getTemplateCode(
478
478
const idQuery = `&id=${ id } `
479
479
const scopedQuery = hasScoped ? `&scoped=true` : ``
480
480
const srcQuery = descriptor . template . src ? `&src` : ``
481
- const attrsQuery = attrsToQuery ( descriptor . template . attrs )
481
+ const attrsQuery = attrsToQuery ( descriptor . template . attrs , 'js' , true )
482
482
const query = `?vue&type=template${ idQuery } ${ srcQuery } ${ scopedQuery } ${ attrsQuery } `
483
483
templateRequest = _ ( src + query )
484
484
templateImport = `import { ${ renderFnName } } from ${ templateRequest } `
@@ -638,12 +638,15 @@ function _(any: any) {
638
638
return JSON . stringify ( any )
639
639
}
640
640
641
- function normalizeSourceMap ( map : SFCTemplateCompileResults [ 'map' ] , id : string ) : any {
641
+ function normalizeSourceMap (
642
+ map : SFCTemplateCompileResults [ 'map' ] ,
643
+ id : string
644
+ ) : any {
642
645
if ( ! map ) return null as any
643
646
644
647
if ( ! id . includes ( 'type=script' ) ) {
645
- map . file = id ;
646
- map . sources [ 0 ] = id ;
648
+ map . file = id
649
+ map . sources [ 0 ] = id
647
650
}
648
651
649
652
return {
0 commit comments