Vue中字符串拼接变量

1.标签属性label中字符串拼接变量


2.方法中字符串拼接变量

methods: {
  showMsg() {
    alert(`查看纪要文件-${this.meetingDetail.title}`);
  }
}

 

你可能感兴趣的:(web前端)