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) })