Vue中使用ESlint出现的格式问题总结
最近使用vue做项目的时候,每次运行程序都会出现很多格式问题,有的问题可以很简单的看明白,例如:Expected indentation of 8 spaces but found 10,删掉两个空格就可以,还有一些不明白在说什么,在此做一个总结:Closing curly brace does not appear on the same line as the subsequent blo..
·
最近使用vue做项目的时候,每次运行程序都会出现很多格式问题,有的问题可以很简单的看明白,例如:Expected indentation of 8 spaces but found 10,删掉两个空格就可以,还有一些不明白在说什么,在此做一个总结:
- Closing curly brace does not appear on the same line as the subsequent block.意思是右括号需要跟下一个代码块在同一行
- Failed to mount component: template or render function not defined.Vue文件中template内需要包裹起来,一般使用div
- Block must not be padded by blank lines.多了空行,需要删掉
更多推荐
已为社区贡献1条内容
所有评论(0)