# vuikit

> A responsive Vue UI library for web site interfaces based on UIkit

Latest version **0.8.10** (published 2018-09-03) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.8.10 |
| Published | 2018-09-03 |
| First published | 2016-05-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.2 MB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Miljan Aleksic |
| Maintainers | miljan |
| Keywords | library, vue, vuejs, uikit, vuikit |

## Links

- npm: https://www.npmjs.com/package/vuikit
- Homepage: https://vuikit.js.org/
- Issues: https://github.com/vuikit/vuikit/issues
- npm.io page: https://npm.io/package/vuikit

## Dependencies (1)

- [vue](https://npm.io/package/vue.md) ^2.5.16

## Recent versions

- 0.8.10 (latest) — 2018-09-03
- 0.9.0-beta3 (next) — 2018-09-07
- 0.8.9 — 2018-09-02
- 0.8.8 — 2018-09-02
- 0.8.7 — 2018-09-02
- 0.8.6 — 2018-08-27
- 0.9.0-beta2 — 2018-08-10
- 0.9.0-beta — 2018-07-24
- 0.8.5 — 2018-05-29
- 0.8.4 — 2018-04-26
- 0.8.3 — 2018-04-21
- 0.8.2 — 2018-03-23
- 0.8.1 — 2018-03-23
- 0.8.0 — 2018-03-15
- 0.7.0 — 2018-01-07
- … 10 more at https://npm.io/package/vuikit/versions

## README

# vuikit

[![NPM version](https://img.shields.io/npm/v/vuikit.svg?style=flat-square)](https://npmjs.org/package/vuikit)

## Install

```
$ npm install --save vuikit
```

## Usage

```js
import Vue from 'vue'
import Vuikit from 'vuikit'

Vue.use(Vuikit)
```

```vue
<template>
  <vk-button>MyButton</vk-button>
</template>
```

### Smaller Bundle Size

Installing the entire library is useful for prototyping and testing but for production is recommended to cherry pick the desired resources and register them manually.

```js
import { Button as VkButton } from 'vuikit/lib/button'
import { Tooltip as VkTooltip } from 'vuikit/lib/tooltip'

// globally
Vue.component('VkButton', VkButton)
Vue.directive('VkTooltip', VkTooltip) // tooltip is a directive

// or locally
export default {
  components: {
    VkButton
  },
  directives: {
    VkTooltip
  }
}
```

## License

[MIT](./LICENSE) © [Miljan Aleksic](https://github.com/miljan-aleksic)

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