Skip to content

Commit

Permalink
fix(compiler-core): process key expression form template v-for
Browse files Browse the repository at this point in the history
  • Loading branch information
underfin committed Sep 10, 2020
1 parent 110e96d commit 02228bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compiler-core/src/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export function getBaseTransformPreset(
[
transformOnce,
transformIf,
transformFor,
...(!__BROWSER__ && prefixIdentifiers
? [
// order is important
Expand All @@ -39,6 +38,7 @@ export function getBaseTransformPreset(
: __BROWSER__ && __DEV__
? [transformExpression]
: []),
transformFor,
transformSlotOutlet,
transformElement,
trackSlotScopes,
Expand Down

0 comments on commit 02228bd

Please sign in to comment.