element-ui插件pagination分页中、英文语言切换

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import locale from 'element-ui/lib/locale/lang/zh-CN' 
// en是英文 zh-CN是中文
import App from './App'
import store from './store'
import router from './router'
Vue.use(ElementUI, { locale })
// 全局引用 locale 

Vue.config.productionTip = false
new Vue({
  el: '#app',
  router,
  components: {
    Power
  },
  render: h => h(App)
})

 

posted @ 2021-08-26 16:40  LilLazy  阅读(1264)  评论(0编辑  收藏  举报