uni farm

vue.jsでelement uiの使用言語を切り替える

vue.jsでelement uiの使用言語を切り替える

vueでelement uiを使っているときに起きたことを書いておく

環境

  • vue: 2.5.2
  • element-ui: 2.4.3

デフォルトの言語を変える

そのままだとポップアップの文字等が中国語になっている

upload cn

画像はel-uploadの削除ポップアップ

公式のやり方を参考に

http://element.eleme.io/#/en-US/component/i18n#internationalization

import Vue from 'vue'

import locale from 'element-ui/lib/locale/lang/ja'
import ElementUI from 'element-ui'

Vue.use(ElementUI, { locale })

とすると日本語になる(ja->enにすると英語になる)

upload ja

実装

<template>
  <div class="upload">
    <el-upload
      class="upload-file"
      action=""
      :auto-upload="false"
      :on-preview="handlePreview"
      :on-remove="handleRemove"
      :on-change="handleAdd"
      :before-remove="beforeRemove"
      multiple
      :limit="3"
      :on-exceed="handleExceed"
      :file-list="fileList">
      <el-button size="small" type="primary">Click to upload<i class="el-icon-upload el-icon-right"></i></el-button>
    </el-upload>
  </div>
</template>
<script>
  export default {
    data () {
      return {
        fileList: []
      }
    },
    methods: {
      handleRemove (file, fileList) {
        this.fileList = fileList
      },
      // added
      handleAdd (file, fileList) {
        this.fileList = fileList
      },
      // click event?
      handlePreview (file) {
        this.targetFile = file
      },
      handleExceed (files, fileList) {
        this.$message.warning(`The limit is 3, you selected ${files.length} files this time, add up to ${files.length + fileList.length} totally`)
      },
      beforeRemove (file, fileList) {
        return this.$confirm(`remove ${file.name} ?`)
      }
    }
  }
</script>

<style scoped lang="scss">
.upload {
  width: 80%;
}
.upload-file {
  width: 100%;
}

</style>
2023, Built with Gatsby. This site uses Google Analytics.