18 lines
390 B
Vue
18 lines
390 B
Vue
<script setup>
|
|
import { useRouter } from 'vue-router';
|
|
|
|
/** Definidores */
|
|
const router = useRouter();
|
|
|
|
/** Métodos */
|
|
const home = () => router.push(view({ name: 'index' }));
|
|
|
|
</script>
|
|
<template>
|
|
<div
|
|
class="flex w-full justify-center items-center space-x-2 cursor-pointer"
|
|
@click="home"
|
|
>
|
|
<img :src="$page.app.logo" class="h-20" />
|
|
</div>
|
|
</template> |