Small pits stepped on during development

1.error Import in body of module; reorder to top import/first

2.error Unexpected trailing comma comma-dangle

Insert picture description here
1. The
Insert picture description here
first error means: the import statement should be placed at the front, at least in front of the const definition variable.
Correction:
Insert picture description here
2.

Insert picture description here
The second error means: Do not add a comma to the last of each object.
Insert picture description here

Published 31 original articles · praised 4 · visits 996

Guess you like

Origin blog.csdn.net/qq_43942185/article/details/105335225