今天在用elementui做后台系統,遇到第一個坑:分頁顯示的是英文
按照官網組件復制下來的代碼:
<
el-row
:gutter="
0"
style=
"margin:30px"
>
<
el-col
:span="
10"
:push="
psize"
>
<
el-pagination
:current-page="
pageIndex"
:page-sizes="[
10,
20,
30,
40]"
:page-size="
pageSize"
:total="
total"
layout=
"total, sizes, prev, pager, next, jumper"
@size-change="
handleSizeChange"
@current-change="
handleCurrentChange"
/>
</
el-col
>
</
el-row
>
出現的效果如上:total這些都是英文,作為我們一般看到話當然是中文啦,后來百度了各種都沒有解釋,總算找到原因了:在main.js引入了英文包。。。。
注釋掉就可以了。
最終搞好的效果如下: