Last active
June 26, 2025 18:14
-
-
Save degidev/cc4ac18f14a3f0247ba7b438499de8eb to your computer and use it in GitHub Desktop.
template basico de Vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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