bootstrap-vue-extra

Useful components for bootstrap-vue:

Usage no npm install needed!

<script type="module">
  import bootstrapVueExtra from 'https://cdn.skypack.dev/bootstrap-vue-extra';
</script>

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>