vue.js Interpolation inside attributes has been removed.
学习vue.js时,有个错误信息如下<img src="{{item.img}}" alt="图片未加载出来" style="width: 100%;height: 100%;">按照错误提示,改为如下即可<img :src="item.img" alt="图片未加载出来" style="width: 100%;height: 100%;">...
·
学习vue.js时,有个错误信息如下
<img src="{{item.img}}" alt="图片未加载出来" style="width: 100%;height: 100%;">
按照错误提示,改为如下即可
<img :src="item.img" alt="图片未加载出来" style="width: 100%;height: 100%;">
更多推荐
已为社区贡献2条内容
所有评论(0)