Files
vue-js-modal/README.md
2017-03-10 17:04:46 +00:00

33 lines
389 B
Markdown

##Vue.js modal
####Simple to use vue.js modal
####Install:
Include plugin in your main.js file.
```javsacript
import 'vue-modal';
```
Create modal
```html
<modal name="hello-world">
hello, world!
</modal>
```
Call it from anywhere in the app
```javascript
methods: {
this.$modal.show('hello-word');
}
```
####Props:
//todo
####Screenshot:
![](http://i.imgur.com/mN1MBJ3.gif)