diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index ccd469fc..f6e45c41 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -45,6 +45,7 @@ function getComponents() { { text: 'Card', link: '/components/card.md' }, { text: 'Carousel', link: '/components/carousel' }, { text: 'Dropdown', link: '/components/dropdown' }, + { text: "Indicator", link: '/components/indicator' }, { text: 'Jumbotron', link: '/components/jumbotron' }, { text: 'ListGroup', link: '/components/list-group' }, { text: 'Pagination', link: '/components/pagination' }, diff --git a/src/index.ts b/src/index.ts index 994321a8..eaa31ca2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,6 +20,7 @@ export { default as FwbFooterCopyright } from './components/FwbFooter/FwbFooterC export { default as FwbFooterIcon } from './components/FwbFooter/FwbFooterIcon.vue' export { default as FwbFooterLink } from './components/FwbFooter/FwbFooterLink.vue' export { default as FwbFooterLinkGroup } from './components/FwbFooter/FwbFooterLinkGroup.vue' +export { default as FwbIndicator } from './components/FwbIndicator/FwbIndicator.vue' export { default as FwbJumbotron } from './components/FwbJumbotron/FwbJumbotron.vue' export { default as FwbListGroup } from './components/FwbListGroup/FwbListGroup.vue' export { default as FwbListGroupItem } from './components/FwbListGroup/FwbListGroupItem.vue'