App.vue 261 B

1234567891011121314
  1. <script setup lang="ts">
  2. import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  3. // 修改分页器默认文字
  4. zhCn.el.pagination.goto = '跳至'
  5. </script>
  6. <template>
  7. <el-config-provider :locale="zhCn">
  8. <RouterView/>
  9. </el-config-provider>
  10. </template>