Skip to content

v2.0.0-beta.39

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 12:19
· 374 commits to main since this release

Updated Breadcrumbs Component ⚠️

The SBreadcrumb component has been reworked to improve accessibility, extensibility, and functionality.

Please refer to the new dedicated docs for them at: https://nuxtseo.com/ui/elements/breadcrumb.

Before

<template>
	<SBreadcrumb />
</template>

After

<script setup lang="ts">
const items = useBreadcrumbItems() // automatic breadcrumb items
const ui = useBreadcrumbsUi() // use prebuilt UI
</script>
<template>
  <SBreadcrumb :items="items" :ui="ui" />
</template>