【Vue教程系列:第二篇】Vue项目添加ElementUI

时间:2020-05-30
本文章向大家介绍【Vue教程系列:第二篇】Vue项目添加ElementUI,主要包括【Vue教程系列:第二篇】Vue项目添加ElementUI使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

1. 在上一篇,搭建环境,创建vue项目目录结构如下:

2. 进入到项目文件夹,执行加载element-ui组件命令:

npm i element-ui -S

3. 在main.js代码里添加对element-ui的引用:

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'

Vue.use(ElementUI);

4. 在项目里使用element-ui控件

 components/HelloWorld.vue文件

<template>
  <div>
    <el-row>
      <el-button>默认按钮</el-button>
      <el-button type="primary">主要按钮</el-button>
      <el-button type="success">成功按钮</el-button>
      <el-button type="info">信息按钮</el-button>
      <el-button type="warning">警告按钮</el-button>
      <el-button type="danger">危险按钮</el-button>
    </el-row>
  </div>
</template>

效果如下(main.js 默认的图片及文字我已去掉):

至此,element-ui已经成功引入vue项目,vue组件的使用详细操作,请参考vue官方使用文档:

https://element.eleme.cn/#/zh-CN/component/installation

后续会继续更新,欢迎大家继续关注!!!

原文地址:https://www.cnblogs.com/zmoneyz/p/12993006.html