elementUI的使用
程序员文章站
2022-06-07 22:09:22
...
element UI的使用:
- 官网 http://element.eleme.io/#/zh-CN/component/quickstart
- 安装 cnpm i element-ui -S -S表示 --save
- 引入element UI的css 和 插件,放入main.js文件中
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.需要什么组件看文档,按文档操作就可以了
上一篇: 复印机常见故障处理方法
下一篇: 通过点击表格行实现单选、全选