赞
踩
报错 Invalid prop: type check failed for prop “total”. Expected Number with value 14, got String with value “14”.
问题原因:
使用了Element UI 中的分页<el-pagination/>
,后端传来的total是String类型的,而这里需要数字类型的。
解决方法:
this.page.total = parseInt(result.data.total)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。