Skip to content

Instantly share code, notes, and snippets.

View Softgod4's full-sized avatar
🏠
взламываю пеинт через линукс

Softgod Softgod4

🏠
взламываю пеинт через линукс
View GitHub Profile
@Softgod4
Softgod4 / Breadcrumbs.vue
Created March 24, 2025 11:14 — forked from lukeocodes/Breadcrumbs.vue
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("/");