欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

elementUI的使用

程序员文章站 2022-06-07 22:09:22
...


element UI的使用:


  1. 官网  http://element.eleme.io/#/zh-CN/component/quickstart
  2. 安装  cnpm i element-ui -S         -S表示  --save
  3.   引入element UI的css 和 插件,放入main.js文件中
              import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

Vue.use(ElementUI);

        4.    webpack.config.js  配置file_loader    

  {
test: /\.(eot|svg|ttf|woff|woff2)(\?\S*)?$/,
loader: 'file-loader'

          }

如果不添加以上代码,运行时会报如下错误:

ERROR in ./node_modules/[email protected]@element-ui/lib/theme-chalk/fonts/element-icons.woff
Module parse failed: Unexpected character ' ' (1:4)
You may need an appropriate loader to handle this file type.
(Source code omitted for this binary file)
 @ ./node_modules/[email protected]@css-loader!./node_modules/[email protected]@element-ui/lib/theme-chalk/index.css 7:335-372
 @ ./node_modules/[email protected]@element-ui/lib/theme-chalk/index.css
 @ ./src/main.js
 @ multi ./node_modules/[email protected]@webpack-dev-server/client?http://localhost:8082 webpack/hot/dev-server ./src/main.js

5.需要什么组件看文档,按文档操作就可以了




相关标签: elementui