Vue.js高仿饿了么之[eslint] Unexpected template string expression

在开发Vue.js高仿饿了么项目的时候,我在设计购物车计算还有差多少元起送功能时,遇到了以下错误:

[eslint] Unexpected template string expression.

代码为:

payDesc() {
  if (this.totalPrice() === 0) {
    return '¥ ${ this.minPrice }元起送'
  } else if (this.totalPrice() < this.minPrice) {
    let diff = this.minPrice - this.totalPrice
    return '还差¥ ${ diff }元起送'
  } else {
    return '去结算'
  }
}

经过一般搜索,我发现原来是ES6新语法问题,ES6新语法规定小撇号必须使用Tab上面的撇号,不能用引号,否则就会报错

修改后代码为:

payDesc() {
  if (this.totalPrice() === 0) {
    return `¥ ${ this.minPrice }元起送`
  } else if (this.totalPrice() < this.minPrice) {
    let diff = this.minPrice - this.totalPrice
    return `还差¥ ${ diff }元起送`
  } else {
    return `去结算`
  }
}

 

转载于:https://my.oschina.net/u/3986411/blog/2877898

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值