<template>
  <div class="h-6" />
  <el-menu
    :default-active="activeIndex2"
    class="el-menu-demo"
    mode="horizontal"
    background-color="#545c64"
    text-color="#fff"
    active-text-color="#ffd04b"
    @select="handleSelect"
  >
    <el-menu-item index="1">Main</el-menu-item>
    <el-menu-item index="2">Wish List</el-menu-item>
    <el-menu-item index="3">Flight Ticket</el-menu-item>
  </el-menu>
</template>

<script lang="ts"></script>

<style scoped></style>