AppLogo.vue 259 B

1234567891011121314
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <div class="w-full h-[56px] flex items-center text-2xl cursor-pointer gap-2 font-bold">
  5. <img src="@/assets/icons/logo.svg" class="w-[32px]" />
  6. Yili Admin
  7. </div>
  8. </template>
  9. <style scoped>
  10. </style>