Skip to content

Instantly share code, notes, and snippets.

View webdelin's full-sized avatar

Wendelin Gerein webdelin

View GitHub Profile
@lukeocodes
lukeocodes / Breadcrumbs.vue
Last active March 24, 2025 11:14
A breadcrumbs component for Nuxt3
<script lang="ts" setup>
const route = useRoute();
const router = useRouter();
const getBreadcrumbs = () => {
const fullPath = route.path;
const requestPath = fullPath.startsWith("/")
? fullPath.substring(1)
: fullPath;
const crumbs = requestPath.split("/");