Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bevitch/bevitch

UI framework for Vue
https://github.com/bevitch/bevitch

bevitch javascript typescript ui ui-kit vue vue-components vue-library vue2 vuejs

Last synced: about 3 hours ago
JSON representation

UI framework for Vue

Awesome Lists containing this project

README

        




beVitch



build
coverage
license
version
PRs

Library with reusable UI components and directives for Vue.js applications

## Intallation

### Prerequisites

Your app must have [vue](https://vuejs.org/v2/guide/installation.html) installed.

### Import library

* Type following command to import `beVitch` library:

```bash
npm i @bevitch/core
```

## Quick start

### Adding library to application

In your main file import `bevitch` library and inject it to your vue instance:

```ts
import Vue from 'vue';
import App from './App.vue';
import beVitch from 'bevitch';

Vue.use(beVitch);

new Vue({
render: h => h(App)
}).$mount('#app');
```

### Add styles for library components:

```ts
import Vue from 'vue';
import App from './App.vue';
import beVitch from 'bevitch';
import 'bevitch/dist/lib/bevitch.css';

Vue.use(beVitch);

new Vue({
render: h => h(App)
}).$mount('#app');
```