ff-admin/src/components/AppLogo.vue

8 lines
176 B
Vue
Raw Normal View History

2025-04-24 16:49:14 +02:00
<template>
<img :src="url + '/api/public/applogo.png'" alt="LOGO" class="h-full w-auto" />
</template>
<script setup lang="ts">
import { url } from "@/serverCom";
</script>