index.vue
865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<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>