Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update dependency prettier to v3.4.1
##### [v3.4.1](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#341) [diff](prettier/prettier@3.4.0...3.4.1) ##### Remove unnecessary parentheses around assignment in `v-on` ([#16887](prettier/prettier#16887) by [@fisker](https://github.com/fisker)) <!-- prettier-ignore --> ```vue <!-- Input --> <template> <button @click="foo += 2">Click</button> </template> <!-- Prettier 3.4.0 --> <template> <button @click="(foo += 2)">Click</button> </template> <!-- Prettier 3.4.1 --> <template> <button @click="foo += 2">Click</button> </template> ```
- Loading branch information