8 lines
173 B
Vue
8 lines
173 B
Vue
|
<template>
|
||
|
<img :src="url + '/api/public/icon.png'" alt="LOGO" class="h-full w-auto" />
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { url } from "@/serverCom";
|
||
|
</script>
|