npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-modal-js

v1.0.6

Published

Modal extends sweet-modal-vue functionalities. Also you can open your component in popup

Downloads

14

Readme

Vue2 Modal JS

Vue2 Modal JS extends the functionalities of sweet-modal-vue. It allows you to open your components in a popup. Demo

Features

  • Simple Message Modals: Display straightforward messages with ease.
  • Customizable Modals: Tailor the appearance of modals with custom icons, titles, and messages.
  • Component Modals: Open any Vue component within a modal, passing props and data as needed.
  • Flexible Modal Control: Open and close modals programmatically with simple commands.
  • Local and Global Usage: Use the modal plugin globally across your application or locally within specific components.

Usage

Installation

Install the package via npm:

npm install vue-modal-js --save

Registering the Plugin

Register the plugin in your Vue project:

import Vue from 'vue'
import Modal from 'vue-modal-js'

Vue.use(Modal)

Add the modal component to your base template:

<modal></modal>

Basic Usage

Simple Modal

Display a simple modal with a message:

this.$modal('My message')

Configuring the Modal

Customize the modal with an icon, title, and message:

this.$modal({
  icon: 'warning',
  title: 'My custom title',
  text: 'My message'
})

Available icon values:

  • success
  • info
  • warning
  • error

Using a Component in the Modal

You can also open a custom component in the modal. Here are the steps:

Including a Component

Import the component:

import MyComponent from './my-component.vue'

Or dynamically load the component:

Vue.component('MyComponent', function (resolve, reject) {
  require(['./my-component.vue'], resolve)
})

Open the component in the modal and pass props:

this.$modal({
  component: MyComponent,
  data: {
    name: userName,
    email: userEmail
  }
})

Closing the Modal

Close the modal using one of the following methods:

this.$modal('close')
// or
this.$modal.close()

Using Locally

If you prefer to use the modal locally within a component, follow these steps:

Register the Plugin Locally

Import and register the modal component in your local component:

import Modal from 'vue-modal-js/modal.vue'

export default {
  components: {
    vueModal: Modal
  }
}

Add the modal component to your template:

<vue-modal ref="modal"></vue-modal>

Using the Modal Locally

Open the modal using the ref:

this.$refs.modal.open('My message')

Examples

Simple Message Modal

this.$modal('Hello, this is a simple message!')

Custom Modal with Icon and Title

this.$modal({
  icon: 'info',
  title: 'Information',
  text: 'This is a custom informational message.'
})

Component Modal with Props

import UserProfile from './UserProfile.vue'

this.$modal({
  component: UserProfile,
  data: {
    userId: 123
  }
})

Closing a Modal Programmatically

// Close the currently open modal
this.$modal('close')
// or
this.$modal.close()

Using Locally within a Component

import Vue from 'vue'
import Modal from 'vue-modal-js/modal.vue'

export default {
  components: {
    vueModal: Modal
  },
  methods: {
    openLocalModal() {
      this.$refs.modal.open('This is a locally used modal message.')
    }
  }
}

In your template:

<vue-modal ref="modal"></vue-modal>
<button @click="openLocalModal">Open Local Modal</button>