Skip to content

Instantly share code, notes, and snippets.

@degidev
Last active June 26, 2025 18:14
Show Gist options
  • Save degidev/cc4ac18f14a3f0247ba7b438499de8eb to your computer and use it in GitHub Desktop.
Save degidev/cc4ac18f14a3f0247ba7b438499de8eb to your computer and use it in GitHub Desktop.
template basico de Vue
<template>
<Head title="Llaves"/>
<AppLayout :breadcrumbs="breadcrumbs" >
<h1>Llaves</h1>
</AppLayout>
</template>
<script setup lang="ts">
import AppLayout from '@/layouts/AppLayout.vue';
import { Head } from '@inertiajs/vue3';
import { type BreadcrumbItem } from '@/types';
const breadcrumbs: BreadcrumbItem[] = [
{
title: 'Configuración',
href: '/configuracion',
},
{
title: 'Llaves',
href: '/configuracion/llaves',
},
];
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment