Vue2.0中Element UI的使用

一、安装

在终端输入 cnpm i element-ui -S
安装完毕后,可以在node_modules文件夹查找到element-ui文件夹

二、引入ElementUI

打开项目的main.js,添加以下代码即可

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)

三、Element UI使用

①Element UI官网:

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

②开发后台管理系统的常用标签

  • el-container:构建整个页面框架
  • el-aside:构建左侧菜单
  • el-menu:左侧菜单内容,常用属性:
    :default-openeds=['index']:默认展开的菜单,通过菜单的index值来关联
    :default-active=['index']:默认选中菜单,通过index关联
  • el-submenu:可展开的菜单,常用属性:
    index:菜单的下标,文本类型,不是数值类型。例<el-submenu index="xx">
  • template:对应el-submenu的菜单名。
  • i标签:设置菜单图标,通过class属性来设置。<i calss="el-icon-iconName"/>
  • el-menu-item:设置菜单的子节点,不可再展开
    index:菜单的下标,文本类型,不是数值类型。例<el-menu-item index="xx">

③使用实例

Vue通过route动态构建菜单
menu与router绑定
1.<el-menu>标签添加router属性
2.在页面中添加<router-view>标签,它是一个容器,动态渲染选择的router
3.<el-menu-item>的index值是要跳转的router
使用示例(仅展示部分重要代码):
App.vue

<el-container style="height: 500px; border: 1px solid #eee">
  <!--左侧菜单-->
    <el-aside width="200px" style="background-color: white">
      <!--一级菜单,默认打开导航1和导航2-->
      <el-menu router :default-openeds="['0','1']"> 
      	<!-- 遍历一级菜单的内容,若show为true则显示出来-->
        <el-submenu v-for="(item,index) in $router.options.routes" :index="index+''" v-if="item.show">
          <template slot="title"><i class="el-icon-message"></i>{{ item.name }}</template>
          <!--遍历二级菜单内容并显示,class是选择某页面后展示的样式-->
          <el-menu-item v-for="(item2,index2) in item.children" :index="item2.path"
            :class="$route.path==item2.path?'is-active':''">{{ item2.name }}</el-menu-item>
        </el-submenu>
      </el-menu>
    </el-aside>
    <!--右侧主页面-->
    <el-main>
      <!--展示选择的页面-->
      <router-view></router-view>
    </el-main>
  </el-container>

index.vue

<template>
  <router-view></router-view>
</template>

router/index.js

const routes =[
  {
    path: '/',
    name: '导航1',
    component:Index,
    show:true,
    redirect:"/PageOne",	//默认页面
    children:[{
        path: '/PageOne',
        name: '页面1',
        component:PageOne},
      {path: '/页面2',
        name: '添加图书',
        component:PageTwo}]
  },
  {
    path:'/navigation',
    name:'导航二',
    show:true,
    component:Index,
    children:[{
        path: '/PageThree',
        name: '页面3',
        component:PageThree
      }]
  }]

效果图:
效果图

如何实现表格分页和排序功能? 很高兴回答这个问题!在Vue2.0使用Element UI实现表格分页和排序功能非常简单。首先,我们需要引入Element UI组件和相关的样式文件。然后,在Vue组件的template使用el-table标签来创建表格,同时指定数据的来源和表格列的定义。为了启用分页和排序功能,我们可以在el-table组件上使用属性,例如: :columns="tableColumns" //指定表格列的定义 :data="tableData" //指定数据的来源 :height="tableHeight" //设置表格的高度 :stripe="true" //开启斑马纹 :border="true" //添加表格边框 :pagination="true" //启用分页功能 :page-size="pageSize" //设置每页显示的记录数 :current-page="currentPage" //设置当前页码 :sort-by="sortKey" //设置排序的字段 :sort-order="sortOrder" //设置排序的顺序 在Vue组件的script,我们需要定义tableColumns和tableData变量,分别用来指定表格列的定义和数据的来源。我们还需要定义pageSize、currentPage、sortKey和sortOrder变量,分别用来设置每页显示的记录数、当前页码、排序的字段和排序的顺序。最后,我们可以使用methods选项来定义相关的函数,例如: handleSortChange(column){ if(column.order === "ascending"){ this.sortOrder = "asc"; }else if(column.order === "descending"){ this.sortOrder = "desc"; }else{ this.sortOrder = ""; } this.sortKey = column.prop; this.fetchData(); //重新获取数据 }, handleCurrentChange(currentPage){ this.currentPage = currentPage; this.fetchData(); //重新获取数据 } 以上是一些简单的示例代码,用来演示如何使用Vue2.0Element UI实现表格分页和排序功能。希望能够对您有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值