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

 

分类:

技术点:

相关文章:

  • 2021-12-14
  • 2021-12-26
  • 2021-07-24
  • 2021-11-10
  • 2021-12-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案