vue2.0 使用typeof出错
问题描述:
http://eslint.org/docs/rules/space-unary-ops Unary word operator 'typeof' must be followed by whitespace
D:\www\vue\src\find\View.vue:172:16
if (typeof(this.voteselect) === 'undefined') {}
解决方法:
vue2.0
的typeof
用法已经变了,不再使用括号,改为typeof+空格+判断值
使用方法如下。
if (typeof this.voteselect === 'undefined') {}