# vue-view components

> view components for vuejs

## Documentation

Common topics are discussed in the [docs](https://imethod.github.io/vue-view-components). Make sure to read it!

## Getting started

```bash

npm install vue-view-components --save

```

```js

import vue_view_component from 'vue-view-components';

...
Vue.use(vue_view_component());

```

## configs

### prefix (default:'i_')


sample

```js

...
Vue.use(vue_view_component({prefix:'v-'}));

```

```html

<v-table></v-table>

```

