8000 fix #10184: Recognize assigment in v-if and do not throw warning by grandsong · Pull Request #10193 · vuejs/vue · GitHub
[go: up one dir, main page]

Skip to content

fix #10184: Recognize assigment in v-if and do not throw warning #10193

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update compiler.js
  • Loading branch information
grandsong committed Jun 25, 2019
95D9
commit 422038e30d3f4ed71eb690dbb5d608ba0bd4f7c0
2 changes: 1 addition & 1 deletion flow/compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ declare type ModuleOptions = {
};

declare type ASTModifiers = { [key: string]: boolean };
declare type ASTIfCondition = { exp: ?string; block: ASTElement };
declare type ASTIfCondition = { exp: ?string; alias: ?string; block: ASTElement };
declare type ASTIfConditions = Array<ASTIfCondition>;

declare type ASTAttr = {
Expand Down
0