tethys.backend/resources/js/Components/Header.vue

32 lines
813 B
Vue
Raw Permalink Normal View History

2023-03-03 15:54:28 +00:00
<template>
<div class="bg-slate-100 py-3 px-6 flex justify-between items-center mb-6">
<div class="flex items-center space-x-6">
<h3 class="font-bold">TethysCloud Errors</h3>
2023-03-03 15:54:28 +00:00
<nav class="flex items-center text-sm">
<Link href="/apps/dashboard">Home</Link>
2023-03-03 15:54:28 +00:00
</nav>
</div>
<!-- <div class="flex items-center space-x-6 text-sm">
2023-03-03 15:54:28 +00:00
<Link href="/app/login">Login</Link>
<Link href="/app/register">Register</Link>
</div> -->
2023-03-03 15:54:28 +00:00
</div>
</template>
<script lang="js">
import { Link } from '@inertiajs/vue3';
// import DefaultLayout from '../Layouts/Default.vue';
export default {
// layout: DefaultLayout,
props: {
testing: String,
},
2023-03-03 15:54:28 +00:00
components: {
Link,
},
};
2023-03-03 15:54:28 +00:00
</script>