@bevitch/core

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


Keywords
ui, framework, vue, library, components, bevitch, javascript, typescript, ui-kit, vue-components, vue-library, vue2, vuejs
License
MIT
Install
npm install @bevitch/core@0.1.0

Documentation

beVitch

build coverage license version PRs

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

Intallation

Prerequisites

Your app must have vue installed.

Import library

  • Type following command to import beVitch library:
npm i @bevitch/core

Quick start

Adding library to application

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

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:

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');