vue3使⽤element-plus最新版引⽤,element-plus中⽂引⽤1.安装element-plus (3种⽅式)
1. npm install element-plus --save (推荐)
2. yarn add element-plus
3. pnpm install element-plus
2. 在main.js种引⽤
import'element-plus/theme-chalk/index.css'//默认css样式英⽂
import Element from'element-plus'//引⼊插件
import zhCn from'element-plus/es/locale/lang/zh-cn'//引⼊中⽂包
//全局使⽤element-plus
vue element admin
//中⽂使⽤
createApp(App).use(Element,{locale:zhCn}).mount('#app')
/
/默认英⽂使⽤
createApp(App).use(Element).mount('#app')

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。