Legacy octal literals are not allowed in strict mode

在index.js文件中,运行后出现如图错误:
Legacy octal literals are not allowed in strict mode_第1张图片
错误原因是:JS严格模式禁止使用八进制字面量,在我的数组中id使用了0,老的八进制(0前缀)。
为什么禁止八进制字面量
Legacy octal literals are not allowed in strict mode_第2张图片
改成下面就解决了:
Legacy octal literals are not allowed in strict mode_第3张图片

你可能感兴趣的:(前端Bug,vue)