problem description
when using elementUI"s paging component today, I want to change his previous and next page arrows to text; the following two properties are provided on the
component document, but I have no effect after using them;
prev-text replaces the previous page of text displayed by the icon string--
next-text replaces the next page of text displayed by the icon
related codes
//
<el-pagination
@current-change="handleCurrentChange"
:current-page.sync="currentPage"
:page-size="5"
layout="pager,next,slot"
:total="totalNews"
:next-text="newsNext"
>
<span style="margin-left: 10px">{{totalNews}}{{totalNews/5}}</span>
</el-pagination>
- newsNext I have bound the "next page" string;
is there a problem with the eleme component, can only be overridden manually?