vue.js Interpolation inside attributes has been removed.

这个问题一般是在使用特殊标签里面进行赋值时候

比如

<img src="{{item.img}}" alt="图片未加载出来" style=" 100%;height: 100%;">

这种是错误的用法

正确的用法

 值得注意的是

vue中作为输出值的时候 如果是在属性里面则不需要{{}}进行包裹 并且要在属性前面加上:

原文地址:https://www.cnblogs.com/stan-an/p/12559301.html