在使用ElementPlus组件时,有时候在官网复制粘贴过来组件文字是英文的,我们可以根据组件的属性来设置中文文字,但是如果多处用到的话,每个组件都需要重新配置一遍就很麻烦,这个时候我们可以通过ElementPlus提供el-config-provider组件,在App.vue全局设置,可以使用默认的,也可以自定义文字。

App.vue

<template>
  <el-config-provider :locale="zhCn">
    <router-view />
  </el-config-provider>
</template>

<script setup lang="ts">
import { RouterView } from 'vue-router'
// 由于element-plus版本不同,可能引用路径也不同,该路径版本 "element-plus": "^2.3.8"
import zhCn from 'element-plus/es/locale/lang/zh-cn'

// 自定义文字(使用默认文字不用设置)
zhCn.el.pagination = {
  goto: '',
  pagesize: '',
  total: '',
  pageClassifier: '',
  page: '',
  prev: '',
  next: '',
  currentPage: '',
  prevPages: '',
  nextPages: '',
  deprecationWarning: ''
}
</script>

<style scoped lang="scss"></style>

GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐