Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

light-modal-vue

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

light-modal-vue

A Light Modal for Vue 2

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

LightModal for VUE 2

Light modal component for Vue, based on the Modal Component Example and added some features like:

  • close on outside click
  • slot support
  • some animations
  • support Bootstrap, but it works without Bootstrap too!

✔ Getting started

Get the package:

npm install light-modal-vue

Register LightModal in your app entrypoint:

import Vue from 'vue'
import LightModal from 'light-modal-vue';

Vue.component('modal', LightModal);

In your HTML call it like

<modal
	v-show = "show_modal"
	title  = "Title"
	intro  = "intro_class"
	outro  = "outro_class"
	@close = "close_method">
	<!-- HEADER -->
	<div slot = "modal-header">
		the header slot is optional
	</div>
	<!-- BODY -->
	<div slot = "modal-body">
		this is the body
	</div>
	<!-- FOOTER -->
	<div slot = "modal-footer">
		this is the footer
	</div>
</modal>

in this case the variable "show_modal" is controlling when the modal appears, intro it's the class associated when the modal show, and outro when the modal hide, close_method it's the callback for the close event.

Integrate Animate.css

Get Animate.css:

npm install animate.css

Import animate.css in your app

import 'animate.css/animate.min.css';

use it with LightModal

<modal
	v-show = "show"
	title  = "Title"
	intro  = "bounceIn"
	outro  = "bounceOut"
	@close = "close">
</modal>

License

MIT

Status

This project is in an early stage of development. Any contribution is welcome :D

Keywords

FAQs

Package last updated on 15 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc