1.5.1 • Published 5 years ago

vue2-modal v1.5.1

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

Vue Modal

A vue.js component for creating modals. Create modals and fill them with whatever components or HTML you want.

How to initialize Vue Modal

Vue modal is built as a vue plugin. It can be initialized just as the Vue documentation states.

import VueModal from "vue2-modal";

Vue.use(VueModal);

Usage

Creation

Vue modals are all accessed and run through the name that is given to a modal. A modal can be created by giving it a name and a function to run when it's closed. Modals also contain a slot for the title section. Here is a very simple modal.

<vue-modal :on-close="closeModal" name="my-modal">
    <h2 slot="header">Hello World</h2>
    <p>This modal will do stuff.</p>
</vue-modal>

Show and Hide

Vue modals contains a very simple API for interacting with modals.

  • Show Modal: this.$modals.show("my-modal")
  • Manually close modal: this.$modals.hide("my-modal")
  • Check if a modal showing: this.$modals.isActive("my-modal")

Styling

There are some built in stylings that can be changed or a manual theme can also be applied. There are three props which are used to change the size of the modals themselves. 1. size (xsm, sm, md, lg, xlg) 2. width 3. height

To apply custom themes simply create a string of standard css and pass it into the theme prop.

Hooks

There are life cycle hooks that can be utilized to run actions at different points in the modals life.

  • onClose: Runs right before the close modal event is emitted
  • onShow: Runs after the modal have been rerendered to the screen.

Props

PropDescriptionValue
nameThe name of the modal. Used to show and hide modal.String
sizeThe size of the modalxsm, sm, md, lg, xlg
widthA fixed width for the modalNumber
heightA fixed height for the modalNumber
hideCloseBtnHides close buttonBoolean
themeCss styles to be applied directlyString
transitionNameThe style of transitionzoom-in, zoom-out, fade, slide-in-top
onCloseA function that runs when a modal closesFunction
onShowA function that runs when a modal is shownFunction
outerCloseDisables closing a modal by clicking outside of itBoolean

License

This project is covered under the MIT License. Feel free to use it wherever you like.

1.5.1

5 years ago

1.5.0

5 years ago

1.4.2

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago