Menu.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="flex flex-col items-center">
  3. <div
  4. class="rounded-[20px] flex items-center justify-center w-[75px] h-[75px]"
  5. :class="[props.info.slected ? 'active' : '']"
  6. >
  7. <img :src="props.info?.img" class="w-[70px] h-[70px]" />
  8. </div>
  9. <div
  10. class="text-[16px] text-center text-[16px] w-[75px]"
  11. :class="[props.info.slected ? 'font-semibold' : '']"
  12. >
  13. {{ info.name }}
  14. </div>
  15. </div>
  16. </template>
  17. <script setup>
  18. import { watch } from 'vue'
  19. import router from '../../../router'
  20. import { useI18n } from 'vue-i18n'
  21. const { t, locale } = useI18n()
  22. const props = defineProps({
  23. info: { type: Object, required: true },
  24. })
  25. watch(
  26. () => props,
  27. () => {
  28. if (props.info.slected) {
  29. router.push(props.info.path)
  30. }
  31. },
  32. { deep: true },
  33. )
  34. const changeLanguage = (lang) => {
  35. locale.value = lang
  36. }
  37. </script>
  38. <style scoped>
  39. .active {
  40. border-radius: 19.296px;
  41. background: #f67f20;
  42. box-shadow: 0px 12.864px 38.593px 0px rgba(234, 124, 105, 0.32);
  43. }
  44. </style>