Useful components for bootstrap-vue:
- Breadcrumbs
- DeclarativeForm
- Loading
- LoadingButton
- Pagination
- Toastr
With yarn:
yarn add bootstrap-vue-extra
With npm:
npm i bootstrap-vue-extra
<template>
<loading :is-loading="true" />
</template>
<script>
import { Loading } from 'bootstrap-vue-extra'
export default {
name: 'Foo',
components: { Loading }
}
</script>