2

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title></title>
        <link rel="stylesheet" href="css/public.css" />
        <link rel="stylesheet" href="css/element.css" />
</head>
<body>
    <div id="app">
        <el-menu
              :default-active="activeIndex2"
              class="el-menu-demo"
              mode="horizontal"
              @select="handleSelect"
              background-color="#545c64"
              text-color="#fff"
              active-text-color="#ffd04b">
              <el-menu-item index="1">处理中心</el-menu-item>
              <el-submenu index="2">
                <template slot="title">我的工作台</template>
                <el-menu-item index="2-1">选项1</el-menu-item>
                <el-menu-item index="2-2">选项2</el-menu-item>
                <el-menu-item index="2-3">选项3</el-menu-item>
             </el-submenu>
              <el-menu-item index="3" disabled>消息中心</el-menu-item>
              <el-menu-item index="4">订单管理</el-menu-item>
        </el-menu>
        <div class="left_nav">
            <el-menu
                  default-active="2"
                  class="el-menu-vertical-demo"
                  @open="handleOpen"
                  @close="handleClose"
                  background-color="#545c64"
                  text-color="#fff"
                  active-text-color="#ffd04b"
                  unique-opened >
                  <el-submenu index="1">
                        <template slot="title">
                          <i class="el-icon-location"></i>
                          <span>导航一</span>
                    </template>
                    <el-menu-item-group>
                          <template slot="title">分组一</template>
                          <el-menu-item index="1-1">选项1</el-menu-item>
                          <el-menu-item index="1-2">选项2</el-menu-item>
                    </el-menu-item-group>
                    <el-menu-item-group title="分组2">
                          <el-menu-item index="1-3">选项3</el-menu-item>
                    </el-menu-item-group>
                    <el-submenu index="1-4">
                          <template slot="title">选项4</template>
                          <el-menu-item index="1-4-1">选项1</el-menu-item>
                    </el-submenu>
                  </el-submenu>
                  <el-submenu index="2">
                    <template slot="title">
                          <i class="el-icon-location"></i>
                          <span>导航二</span>
                    </template>
                    <el-menu-item-group>
                          <template slot="title">分组一</template>
                          <el-menu-item index="1-1">选项1</el-menu-item>
                          <el-menu-item index="1-2">选项2</el-menu-item>
                    </el-menu-item-group>
                 </el-submenu>
                  <el-menu-item index="3" disabled>
                    <i class="el-icon-document"></i>
                    <span slot="title">导航三</span>
                  </el-menu-item>
                  <el-menu-item index="4">
                    <i class="el-icon-setting"></i>
                    <span slot="title">导航四</span>
                  </el-menu-item>
            </el-menu>
        </div>
        
    </div>
</body>
<script type="text/javascript" src="js/vue.js" ></script>
<script type="text/javascript" src="js/element.js" ></script>
<script>
    new Vue({
          el: '#app',
           data() {
              return {
                activeIndex: '1',
                activeIndex2: '1'
              };
        },
        methods: {
              handleSelect(key, keyPath) {
                console.log(key, keyPath);
              },
              handleOpen(key, keyPath) {
                console.log(key, keyPath);
              },
              handleClose(key, keyPath) {
                console.log(key, keyPath);
              }
        }

    })
</script>

</html>


攻城狮Lee丶
2.8k 声望19 粉丝

90后码农一枚。关注互粉。