index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <div @click="toggleCollapsed(!collapsed)">
  3. <svg
  4. :class="{'is-active': !collapsed}"
  5. class="hamburger"
  6. viewBox="0 0 1024 1024"
  7. xmlns="http://www.w3.org/2000/svg"
  8. width="64"
  9. height="64"
  10. >
  11. <path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z" />
  12. </svg>
  13. </div>
  14. </template>
  15. <script lang="ts">
  16. import { defineComponent, PropType } from 'vue'
  17. export default defineComponent({
  18. name: 'Hamburger',
  19. props: {
  20. collapsed: {
  21. type: Boolean as PropType<boolean>,
  22. default: true
  23. }
  24. },
  25. emits: ['toggleClick'],
  26. setup(props, { emit }) {
  27. function toggleCollapsed(collapsed: boolean) {
  28. emit('toggleClick', collapsed)
  29. }
  30. return {
  31. toggleCollapsed
  32. }
  33. }
  34. })
  35. </script>
  36. <style lang="less" scoped>
  37. .hamburger {
  38. display: inline-block;
  39. cursor: pointer;
  40. width: 20px;
  41. height: 20px;
  42. }
  43. .hamburger.is-active {
  44. transform: rotate(180deg);
  45. }
  46. </style>