Blame view

src/main/webapp/libs/element-vue/lib/mixins/locale.js 341 Bytes
caiyongsong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
'use strict';

exports.__esModule = true;

var _locale = require('element-ui/lib/locale');

exports.default = {
  methods: {
    t: function t() {
      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
        args[_key] = arguments[_key];
      }

      return _locale.t.apply(this, args);
    }
  }
};