Vue整合ElementUI,组件使用教程,适合新手(一)

简介: Vue整合ElementUI,组件使用教程,适合新手

7a88bb35bf3b4cae8353e04020b8d760.png

Vue整合ElementUI

提示:这里我使用的Vue是2.0版本20210602100419814.png推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。

  1. 下载elementui的依赖
npm i element-ui -S
  1. 在src下的main.js中指定当前项目中使用elementui
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
  1. 将elementui注册到vue实例上
Vue.use(ElementUI);


20210602100204955.png


一. 按钮组件

1.默认样式按钮
  <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>
2.简洁按钮 plain 鼠标移动上去才会显示背景颜色
  <el-row>
    <el-button plain>朴素按钮</el-button>
    <el-button type="primary" plain>主要按钮</el-button>
    <el-button type="success" plain>成功按钮</el-button>
    <el-button type="info" plain>信息按钮</el-button>
    <el-button type="warning" plain>警告按钮</el-button>
    <el-button type="danger" plain>危险按钮</el-button>
  </el-row>
3.使用圆角按钮 round
  <el-row>
    <el-button round>圆角按钮</el-button>
    <el-button type="primary" round>主要按钮</el-button>
    <el-button type="success" round>成功按钮</el-button>
    <el-button type="info" round>信息按钮</el-button>
    <el-button type="warning" round>警告按钮</el-button>
    <el-button type="danger" round>危险按钮</el-button>
  </el-row>
4.图标按钮  idco:具体要显示的图标
  <el-row>
    <el-button icon="el-icon-search" circle></el-button>
    <el-button type="primary" icon="el-icon-edit" circle></el-button>
    <el-button type="success" icon="el-icon-check" circle></el-button>
    <el-button type="info" icon="el-icon-message" circle></el-button>
    <el-button type="warning" icon="el-icon-star-off" circle></el-button>
    <el-button type="danger" icon="el-icon-delete" circle></el-button>
  </el-row>

20210602102928855.png

按钮组件的详细使用

  • 日后使用element ui的相关组件时需要注意的是 所有组件都是el-组件名称开头

创建按钮:<el-button>默认按钮</el-button>

组件属性使用

  • 总结:在element中所有的组件的属性使用都是直接将属性名=属性值方式写在对应的组件标签上,boolean类型的属性默认为false可以简写一个属性名字表示为true。

20210602110436221.png

示例

    <div>
      <h1>创建简单的按钮</h1>   
      <el-button>默认按钮</el-button>
      <h1>使用按钮的属性</h1>
      <el-button type="primary" size="mini" round="true"  loading>primary</el-button>
      <el-button type="primary" size="small" round="true" disabled>primary</el-button>
      <el-button type="primary" size="medium" circle icon="el-icon-delete-solid"></el-button>
    </div>

20210602110817427.png

按钮组的使用

  • 按钮组的使用就是通过<el-button-group>把多个按钮包裹起来
    <el-button-group>
        <el-button type="primary" plain round icon="el-icon-back"></el-button>
        <el-button type="primary" plain round icon="el-icon-right"></el-button>
      </el-button-group>

20210602112636813.png


二. Link 文件链接组件

文字链接组件的创建

<el-link>默认链接</el-link>

文字链接组件属性的使用

20210602135743190.png

示例

  <div>
    <h1>使用文字链接组件</h1>
    <el-link type="primary" disabled icon="el-icon-eleme">默认链接</el-link>
    <el-link type="success" icon="el-icon-eleme">默认链接</el-link>
    <el-link type="warning" icon="el-icon-eleme">默认链接</el-link>
    <el-link type="info" :underline="false" icon="el-icon-eleme">默认链接</el-link>
  </div>

注意:有些属性需要通过Vue的绑定语法给组件赋值 :underline="false" 否则则会抛出异常


20210602140304331.png

三. Layout(栅格) 布局组件的使用

  • 通过基础的 24 分栏,迅速简便地创建布局。在element ui中布局组件将页面划分为多个行(row),每行最多分为24栏(列)

使用Layout组件

el-row代表一行,行里面放的自然就是列el-col,span代表栅格占据的列数,是el-col的一个属性由于它是我们elementui中的一个属性这个属性必须要求我们写数字所以赋值的时候需要带上:。如果span等于8表示一列占用8份如果超过8份则会换行显示。

<el-row>
  <el-col span="8">占用8份</el-col>
  <el-col span="8">占用8份</el-col>
  <el-col span="8">占用8份</el-col>
</el-row>
<el-row>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
    </el-row>
    <el-row>
      <el-col :span="7"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="8"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="5"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="4"><div style="border: 1px red solid">占用6份</div></el-col>
    </el-row>
    <el-row>
      <el-col :span="3"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="1"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="14"><div style="border: 1px red solid">占用6份</div></el-col>
 </el-row>

20210602161844786.png

注意:

  • 在一个布局组件好 是由rowcol组合而成
  • 在使用时要区分 row属性col属性

行属性的使用


20210602161907982.png

    <el-row :gutter="10" tag="span">
      <el-col :span="6" ><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
      <el-col :span="6"><div style="border: 1px red solid">占用6份</div></el-col>
    </el-row>

:gutter=“10”:表示格栅间隔

20210602165817680.png

:tag=“span”:表示当前行使用哪种标签去构建

20210602170144108.png



列属性的使用

2021060309083439.png偏移属性offset

   <el-row>
      <el-col :span="12" offset="4"><div style="border: 1px blue solid">我是占用12份</div></el-col>
      <el-col :span="12"><div style="border: 1px blue solid">我是占用12份</div></el-col>
    </el-row>

20210603091927628.png


向右移动push

    <el-row>
      <el-col :span="12" push="6"><div style="border: 1px blue solid">我是占用12份</div></el-col>
      <el-col :span="12" push="0"><div style="border: 1px red solid">我是占用12份</div></el-col>
    </el-row>

20210603092326785.png

  • 注意以上两者的区别
相关文章
|
7天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
7天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
6天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
6天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
21天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
7天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
7天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
8天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
8天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
13天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发