index.vue 865 Bytes
<template>
  <div style="padding: 0 15px;" @click="toggleClick">
    <svg :class="{ 'is-active': isActive }" class="hamburger" viewBox="0 0 24 24" fill="none"
      xmlns="http://www.w3.org/2000/svg" width="24" height="24">
      <path d="M12 1L3 12L12 23" stroke="#333333" stroke-width="2" stroke-linejoin="round" />
      <path d="M21 1L12 12L21 23" stroke="#333333" stroke-width="2" stroke-linejoin="round" />
    </svg>
  </div>
</template>

<script>
export default {
  name: 'Hamburger',
  props: {
    isActive: {
      type: Boolean,
      default: false
    }
  },
  methods: {
    toggleClick() {
      this.$emit('toggleClick')
    }
  }
}
</script>

<style scoped>
.hamburger {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  transform: rotate(180deg);

}

.hamburger.is-active {
  transform: rotate(0deg);
}
</style>