grm-vue-modal
v0.1.27
Published
```shell npm i grm-vue-modal ``` ## How to Use ### plugin
Downloads
13
Readme
Getting Started
Installation
npm i grm-vue-modal
How to Use
plugin
import GrmVueModal from 'grm-vue-modal'
Vue.use(GrmVueModal)
component
<template>
<div>
<button @click="openModal">open</button>
</div>
</template>
<script>
import HelloWorld from './HelloWorld'
export default {
methods: {
openModal() {
this.$grmModal.show(
{
component: HelloWorld
}
)
}
}
}
</script>