# Breadcrumb > Indicate the current page's location within a navigational hierarchy. Separators are automatically > added in CSS through ::before and content. ## Overview ```html ``` ## Breadcrumb items Items are rendered using `:items` prop. It can be an array of objects to provide link and active state. Links can be `href`'s for anchor tags, or `to`'s for router-links. Active state of last element is automatically set if it is `undefined`. ```js const items = [ { text: 'Home', href: 'https://google.com' }, { text: 'Posts', to: { name: 'home' } }, { text: 'Another Story', active: true } ] ``` Refer to the [Router support](/docs/reference/router-links) reference page for router-link specific props. ## Manually placed items You may also manually place individual `` child components in the default slot of the `` component, as an alternative to using the `items` prop, for greater control over the content of each item: ```html ``` Remember to set the `active` prop on the last item. `` also supports the various `` props such as `to`, etc.