## Basic

Download the repo, extract ```vue-modal.umd.min.js``` and ```vue-modal.css``` out of the ```dist``` folder
and insert them in your page.

``` html
<script type="text/javascript" src="vue-modal.umd.min.js"></script>
```

``` html
<link rel="stylesheet" href="vue-modal.css">
```

## Module System

Install it via npm
```
npm i @kouts/vue-modal --save
```
Use the ```import``` to include it into your js
``` js
import VueModal from '@kouts/vue-modal'
import '@kouts/vue-modal/dist/vue-modal.css'
```