vue项目中的一些报错解决方法

1、mixed spaces and tabs no-mixed-spaces-and-tabs

禁止使用空格和tab混合缩进;大多数代码约定要求使用空格或 tab 进行缩进。因此,一行代码同时混有 tab 缩进和空格缩进,通常是错误的;
解决方法:删除报错地方的空格,再进行编译,成功通过。

2、Cannot read property 'get' of undefined

要调用后台、数据,需引入vue-resource,此处可使用npm工具,进行安装(忘记安装),

1、安装vue-resource到项目中,找到当前项目
   	输入:npm install vue-resource --save
2、安装完毕后,在main.js中导入,如下所示:
	import  VueResource  from 'vue-resource'
	Vue.use(VueResource)

你可能感兴趣的:(笔记,vue)