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: 5 months ago
JSON representation
UI framework for Vue
- Host: GitHub
- URL: https://github.com/bevitch/bevitch
- Owner: bevitch
- License: mit
- Created: 2020-05-11T21:16:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T05:19:16.000Z (9 months ago)
- Last Synced: 2025-02-01T01:33:44.835Z (6 months ago)
- Topics: bevitch, javascript, typescript, ui, ui-kit, vue, vue-components, vue-library, vue2, vuejs
- Language: TypeScript
- Homepage: https://bevitch.github.io/
- Size: 875 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
beVitch
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');
```