The vue project reported an error:
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.
I reported this error when writing the route of the vue project today, and later I found out that there was an extra line.
For example, if there is too much empty line, an error will be reported. Delete the line directly, and at most one line can be empty.
import foo from '@/components/foo'
(Router)
Or comment empty lines with //import foo from '@/components/foo'
//
//
(Router)