1.0.3 • Published 5 months ago

@stephenhebert/vue-use-modal v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

vue-use-modal

Installation

> pnpm add @stephenhebert/vue-use-modal

Usage

App.vue

<script setup>
import { ModalContainer } from '@stephenhebert/vue-use-modal'
...
</script>

<template>
  ...
  <ModalContainer />
</template>

Component.vue

<script setup>
import { show } from '@stephenhebert/vue-use-modal'

import ModalComponent from '...'

function showMyModal() {
  show(ModalComponent, { prop1, prop2, ...})
}
</script>

See example

1.0.3

5 months ago

1.0.0

5 months ago