解决方法
ES6模板字符串应与反引号一起使用,而不是单引号.
替换这个:
替换这个:
'delete the item ${row.name}'
有了这个 :
`delete the item ${row.name}`
这是评论中要求的ESLint示例:http://eslint.org/docs/rules/no-template-curly-in-string#examples