当前位置:   article > 正文

Element-UI简介

Element-UI简介

目录

安装

常用组件

Container 布局容器

Button 按钮

MessageBox 弹框

Form 表单验证


element-ui是一个前端的ui框架,封装了很多已经写好的ui组件,例如表单组件,布局组件,表格组件.......是一套桌面端组件。

Element - 网站快速成型工具icon-default.png?t=N6B9https://element.eleme.cn/2.13/#/zh-CN

安装

1.使用npm进行安装或是引入样式

npm i element-ui -S

  1. <!-- 引入样式 -->
  2. <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  3. <!-- 引入组件库 -->
  4. <script src="https://unpkg.com/element-ui/lib/index.js"></script>

2.在main.js中进行配置

 

常用组件

Container 布局容器

可以自定义样式

<el-container>:外层容器。当子元素中包含 <el-header> 或 <el-footer> 时,全部子元素会垂直上下排列,否则会水平左右排列。

<el-header>:顶栏容器。

<el-aside>:侧边栏容器。

<el-main>:主要区域容器。

<el-footer>:底栏容器。

 

Button 按钮

  1. <el-button>默认按钮</el-button>
  2. <el-button type="primary">主要按钮</el-button>
  3. <el-button type="success">成功按钮</el-button>
  4. <el-button type="info">信息按钮</el-button>
  5. <el-button type="warning">警告按钮</el-button>
  6. <el-button type="danger">危险按钮</el-button>

 也可以修改样式

  1. <el-button icon="el-icon-search" circle></el-button>
  2. <el-button type="primary" icon="el-icon-edit" circle></el-button>
  3. <el-button type="success" icon="el-icon-check" circle></el-button>
  4. <el-button type="info" icon="el-icon-message" circle></el-button>
  5. <el-button type="warning" icon="el-icon-star-off" circle></el-button>
  6. <el-button type="danger" icon="el-icon-delete" circle></el-button>

 

MessageBox 弹框

模拟系统的消息提示框而实现的一套模态对话框组件,用于消息提示、确认消息和提交内容。

  1. <template>
  2. <el-button type="text" @click="open">点击打开 Message Box</el-button>
  3. </template>
  4. <script>
  5. export default {
  6. methods: {
  7. open() {
  8. this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
  9. confirmButtonText: '确定',
  10. cancelButtonText: '取消',
  11. type: 'warning'
  12. }).then(() => {
  13. this.$message({
  14. type: 'success',
  15. message: '删除成功!'
  16. });
  17. })
  18. }
  19. }
  20. }
  21. </script>

 

Form 表单验证

在防止用户犯错的前提下,尽可能让用户更早地发现并纠正错误。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/636565
推荐阅读
相关标签
  

闽ICP备14008679号