我们在创建脚手架结构时,会出现很多的报错:为此我搜集了一些常见的报错:
1. error Mixed spaces and tabs no-mixed-spaces-and-tabs
这个报错代表缩进和换行报错,此时需要对 .vue 后缀的组件进行格式化,简单粗暴的办法就是:shift + alt + f格式化一下组件就解决缩进和换行的问题了。
2. export 'default' (imported as 'Vue') was not found in 'vue'
这个报错主要是因为我们在设定关闭vue启动生成提示时用了 Vue.config.productionTip = false ,我们此时没有new Vue实例对象,所以这里不能用 Vue.config...... 而是应该换成this.config...... 最后全换成是this.config.productionTip = false或者注释掉就解决了。
3. error Component name "School" should always be multi-word vue/multi-word-component-names
脚手架安装的eslint-plugin-vue如果是8以上的版本,会报错组件名错误,要么降到7,要么组件名改成大驼峰命名(如School改成MySchool),双单词衔接。