Thin but powerful modal component of Vue.js
npm install vue-thin-modal

vue-thin-modal provides thin but powerful modal component. Its styles, transitions and contents are fully customizable.
``bash`
$ npm install --save vue-thin-modalor
$ yarn add vue-thin-modal
1. Import VueThinModal and install it in Vue constructor.
`js
import Vue from 'vue'
import VueThinModal from 'vue-thin-modal'
Vue.use(VueThinModal)
new Vue({
// ...
})
`
2. (Optional) Import base CSS file for the modal wherever you want or you can define your own styles.
`js`
import 'vue-thin-modal/dist/vue-thin-modal.css'
3. Use component in your apps. You can see this.$modal in your components
`vue
Modal Title
`
$3
If you have Vue constructor on window, you don't need to call Vue.use(VueThinModal) since it will be called automatically. This is the case when you load Vue.js and vue-thin-modal via