Skip to content

Instantly share code, notes, and snippets.

@gen-yamada
Created December 11, 2020 03:28
Show Gist options
  • Save gen-yamada/862806bac736c4e1f67387ba120fd98b to your computer and use it in GitHub Desktop.
Save gen-yamada/862806bac736c4e1f67387ba120fd98b to your computer and use it in GitHub Desktop.
toggle-menu vue.js
<template>
<div class="header">
<p
v-for="(menu, index) in menus"
:key="menu.id"
class="header-menu"
:class="{
headermenuactive: index === tabindex,
headermenuno: index !== tabindex,
}"
@click="onclick(index)"
>
{{ menu.name }}
</p>
</div>
</template>
<script>
import axios from "axios"
export default {
data() {
return {
tabindex: 0,
menus: [
{ id: 1, name: "メニュー1" },
{ id: 2, name: "メニュー2" },
],
}
},
methods: {
onclick(index) {
this.tabindex = index
},
},
}
</script>
<style>
.header {
width: 100%;
display: flex;
}
.header-menu {
width: 50%;
}
.headermenuactive {
border-bottom: 3px solid #4f68ff;
color: #595757;
font-weight: bold;
}
.headermenuno {
color: #a3a3a3;
font-weight: normal;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment