fix(cli): failed to match arguments in some cases (#11618)

* fix(cli): failed to match arguments in some cases

* chore: upd
This commit is contained in:
neverland 2023-02-26 10:07:31 +08:00 committed by GitHub
parent 40d1c97f6b
commit 5954997314
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,9 +29,15 @@ function formatArguments(input: string): VueEventArgument[] {
} else if ([':', ',', '_', ' '].includes(input[0])) {
input = input.substring(1);
} else {
const val = input.match(/( |'|\||\w)+/)![0] || '';
input = input.substring(val.length);
items.push(val);
const matched = input.match(/( |'|\||\w)+/);
if (matched?.length && matched[0]) {
const val = matched[0];
input = input.substring(val.length);
items.push(val);
} else {
input = '';
}
}
}