Skip to content
Snippets Groups Projects
AppHeader.vue 478 B
Newer Older
  • Learn to ignore specific revisions
  • Zhengbo Wang's avatar
    Zhengbo Wang committed
    <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>
    
    Zhengbo Wang's avatar
    Zhengbo Wang committed
    </template>
    
    <script lang="ts"></script>
    
    
    <style scoped></style>