bootstrap-vue-extra
v1.0.1
Published
Useful components for [bootstrap-vue](https://bootstrap-vue.js.org):
Downloads
2
Readme
bootstrap-vue-extra
Useful components for bootstrap-vue:
- Breadcrumbs
- DeclarativeForm
- Loading
- LoadingButton
- Pagination
- Toastr
Install
With yarn:
yarn add bootstrap-vue-extra
With npm:
npm i bootstrap-vue-extra
Usage
<template>
<loading :is-loading="true" />
</template>
<script>
import { Loading } from 'bootstrap-vue-extra'
export default {
name: 'Foo',
components: { Loading }
}
</script>