# superbvue

Latest version **0.1.10** (published 2020-12-31) · 0 weekly downloads

## Install

```sh
npm install superbvue
pnpm add superbvue
yarn add superbvue
bun add superbvue
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.10 |
| Published | 2020-12-31 |
| First published | 2020-12-07 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 497.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Maintainers | superbvue |
| Keywords | supervue, vue, ui framework, component framework, ui library, component library, bootstrap |

## Links

- npm: https://www.npmjs.com/package/superbvue
- Repository: https://github.com/superbvue/SuperBVue
- Homepage: https://github.com/superbvue/SuperBVue#readme
- Issues: https://github.com/superbvue/SuperBVue/issues
- npm.io page: https://npm.io/package/superbvue

## Dependencies (4)

- [vue](https://npm.io/package/vue.md) ^3.0.0
- [core-js](https://npm.io/package/core-js.md) ^3.6.5
- [prettier](https://npm.io/package/prettier.md) ^2.2.1
- [vue-router](https://npm.io/package/vue-router.md) ^4.0.0-0

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 0.1.10 (latest) — 2020-12-31
- 0.1.9 — 2020-12-31
- 0.1.8 — 2020-12-24
- 0.1.7 — 2020-12-19
- 0.1.6 — 2020-12-19
- 0.1.5 — 2020-12-12
- 0.1.4 — 2020-12-12
- 0.1.3 — 2020-12-11
- 0.1.2 — 2020-12-11
- 0.1.1 — 2020-12-07
- 0.1.0 — 2020-12-07

## README

# SuperBVue

<!-- **SuperBVue** gives you a set of accessible and composable [Vue](https://v3.vuejs.org/) components/UI that you can use to build your favourite applications and sites with [Bootstrap v5](https://getbootstrap.com/). -->

**SuperBVue** Bootstrap v5 UI component and grid system available for Vue v3

## Looking for the documentation?
Head over here ==> [SuperBVue](https://superbvue.netlify.app/)

## Prerequisite
- Vue 3 is required

## Features

- **Ease of Styling:** SuperBVue using boostrap v5 UI
- Fully support Vue 3
- Typescript support
- No JQuery dependencies

## Installation

```bash
yarn add superbvue
```
or
```bash
npm install superbvue
```

## Usage

**1. Import the SuperBVue UI in your `main.js` file.**
```js
import { createApp } from 'vue'
import { SBButton } from 'superbvue'
import App from './App.vue'

const app = createApp(App)

app.component('SBButton', SBButton)

app.mount('#app')
```
Or in component level:
```js
import { defineComponent } from 'vue'
import { SBButton } from 'superbvue'

export default defineComponent({
  components: {
    SBButton
  }
})
```

**2. In your component, you can global use it in template.**
```html
<template>
  <SBButton>my button</SBButton>
</template>

<script>
import { defineComponent } from 'vue'

export default defineComponent({
  components: {
    SBButton
  }
})
</script>
```

---
_Source: https://npm.io/package/superbvue · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
