vue引入element ui
时间: 2023-09-03 08:05:28 浏览: 72
vue-element-ui
在Vue项目中引入Element UI的步骤如下:
1.安装Element UI
使用npm安装Element UI:
```
npm install element-ui -S
```
2.在main.js中引入Element UI
在main.js中引入Element UI的样式和组件:
```javascript
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);
```
3.在组件中使用Element UI
在需要使用Element UI组件的组件中,直接使用即可:
```html
<template>
<div>
<el-button type="primary">按钮</el-button>
</div>
</template>
```
以上就是在Vue项目中引入Element UI的步骤。
阅读全文