@dillingham/vue-modal
v1.0.29
Published
Simple reactive Vue / Tailwind modal
Downloads
65
Readme
Vue Modal
Simple reactive Vue / Tailwind modal
<a v-modal:some-modal-id>Open Modal</a><modal id="some-modal-id">
<template slot-scope="{ close }">
<!-- Add content -->
<span @click="close">Cancel</span>
</template>
</modal>Install
npm install @dillingham/vue-modal --saveimport VueModal from '@dillingham/vue-modal';
Vue.use(VueModal);