首次用於Element ui里的消息提醒里得到數據
news() { this.$message({ showClose: true, message: `每個商品評價成功可獲得${this.commentCredit}積分`, //模板字符串轉義獲得積分 type: "warning" }); },
然后在網上查有很多用法,暫時不太清楚,也沒用到太多這種。待后續學習
供參考https://blog.csdn.net/zwt_guiji/article/details/81979299
用法為
// 普通字符串 `In JavaScript '\n' is a line-feed.` // 多行字符串 `In JavaScript this is not legal.` // 字符串中嵌入變量 var name = "Bob", time = "today"; `Hello ${name}, how are you ${time}?` // Hello Bob, how are you today?