今日问题:Vue3 + Element Plus 国际化设置中文和使用图标无效解决方法
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
问题1: Vue3 + Element Plus 国际化设置中文无效,
错误代码如下:
import ElementPlus from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import 'element-plus/dist/index.css'
createApp(App).use(ElementPlus).use(ElementPlus, {locale:zhCn}).mount('#app')
错误原因:使用了两次ElementPlus,去掉一个运行成功,正确如下:
import ElementPlus from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import 'element-plus/dist/index.css'
createApp(App).use(ElementPlus, {locale:zhCn}).mount('#app')
问题2: 使用图标无效
错误代码如下:
<template>
<div>
<el-icon><location /></el-icon>
<el-icon><icon-menu /></el-icon>
</div>
</template>
<script>
import {Menu as IconMenu,Location} from '@element-plus/icons-vue'
export default {
name: "Aside",
}
</script>
错误原因:使用图标需要注册组件,正确代码如下:
<template>
<div>
<el-icon><location /></el-icon>
<el-icon><icon-menu /></el-icon>
</div>
</template>
<script>
import {Menu as IconMenu,Location} from '@element-plus/icons-vue'
export default {
name: "Aside",
components:{IconMenu,Location}
}
</script>
GitHub 加速计划 / eleme / element
10
1
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:5 个月前 )
c345bb45
9 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 9 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)