美文网首页
VUE-Element-ui的使用

VUE-Element-ui的使用

作者: 晴天3521 | 来源:发表于2022-11-16 15:19 被阅读0次
  • 安装element-ui
npm install element-ui --save /  cnpm install element-ui --save
  • 在main.js引入
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);
  • 运行项目,此时会报错(找不到字体)


    页面报错
  • 解决措施(在webpack.config.js引入下面内容)
{
        test: /\.(eot|svg|ttf|woff|woff2)(\?\S*)?$/,
        loader: 'file-loader'
      },

大功告成!
好了,今天的分享就到这里了!
愿你三冬暖,愿你春不寒;愿你天黑有灯,下雨有伞。

相关文章

网友评论

      本文标题:VUE-Element-ui的使用

      本文链接:https://www.haomeiwen.com/subject/qizaactx.html