11 Vue-配置Element-ui插件
配置element-ui
1. 首先百度搜索Element-ui,
进入官网:https://element.eleme.cn/2.0/#/zh-CN/component/quickstart
2. 到项目所在的路径,直接在pycharm的终端窗口中
安装了这个element-ui以后,我们会发现它也自动在项目的nodel_modules环境依赖文件夹中安装了element开头的文件
他是做成了一个快捷方式的样子,所有需要用到的东西都在这个快捷方式下。
3.在main.js文件中添加以下代码
// 配置环境
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
// 虽然配置好了element-ui,但是我们需要在全局使用它,所以我们需要写以下代码
// 代表可以全局的使用ElementUI
Vue.use(ElementUI)