Deprecated usages detected, please refer to the el-pagination documentation for more details?

问题描述

error.js?6f4a:11 ElementPlusError: [ElPagination] Deprecated usages detected, please refer to the el-pagination documentation for more details控制台报这个警告,大佬们知道咋回事不?

阅读 5.9k
2 个回答
ElementPlusError: [ElPagination] Deprecated usages detected, please refer to the el-pagination documentation for more details
ElementPlusError: [ElPagination] 检测到废弃的用法,请参考 el-pagination 文档了解更多细节

直接读提示信息就好了,具体使用哪些被废弃的属性或者事件就得看你怎么写的业务代码了。

我的同样的警告解决了,加个v-if就好了。
问题的原因是在组件setup的时候,传入的total还未就绪,也就是undefined
就会触发这个警告。

        <el-pagination
            v-if="tableData.total"
            :total="tableData.total"
            ...
        />
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题