3.0.6 • Published 14 days ago

@vuesimple/vs-modal v3.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
14 days ago

Vue Simple Modal

🗃 A simple vue modal. Perfect for all your modal/ dialogs scenarios.

A light weight vue plugin built groundup, with importance to accessibility.

npm npm

forthebadge forthebadge forthebadge forthebadge forthebadge forthebadge

📺 Live Demo

Code Sandbox Demo: Link Code Sandbox: Link

🛠 Install

npm i @vuesimple/vs-modal

🚀 Usage

<template>
  <button size="sm" @click="openModal('modal1')">Basic Modal</button>
  <vs-modal ref="modal1" title="Funny, Modal Works 🥳"> Hello Peeps from vs-modal!! </vs-modal>

  <button size="sm" @click="openModal('backdrop-modal')">Basic Modal (with blur backdrop)</button>
  <vs-modal ref="backdrop-modal" backdropBlur title="Funny, Modal Works 🥳">
    Wow!! Backdrop is blurred out 🔥
  </vs-modal>
</template>

<script>
  import VsModal from '@vuesimple/vs-modal';

  export default {
    components: {
      VsModal,
    },

    methods: {
      openModal(ref) {
        this.$refs[ref].open();
      },

      closeModal(ref) {
        this.$refs[ref].close();
      },
    },
  };
</script>

🌎 CDN

<script src="https://unpkg.com/@vuesimple/vs-modal@<version>/dist/vs-modal.min.js"></script>
// Main/Entry file
app.use(VsModal.plugin);
<template>
  <button size="sm" @click="openModal('modal1')">Basic Modal</button>
  <vs-modal ref="modal1" title="Funny, Modal Works 🥳"> Hello Peeps from vs-modal!! </vs-modal>
</template>

<script>
  export default {
    methods: {
      openModal(ref) {
        this.$refs[ref].open();
      },

      closeModal(ref) {
        this.$refs[ref].close();
      },
    },
  };
</script>

Nuxt Demo - Code Sandbox: Link

After installation,

  • Create a file /plugins/vs-modal.js

    import Vue from 'vue';
    import VsModal from '@vuesimple/vs-modal';
    
    Vue.component('vs-modal', VsModal);
  • Update nuxt.config.js

    module.exports = {
      ...
      plugins: [
        { src: '~plugins/vs-modal', mode: 'client' }
        ...
      ]
    }
  • In the page/ component

    <template>
      <button size="sm" @click="openModal('modal1')">Basic Modal</button>
    
      <client-only>
        <vs-modal ref="modal1" title="Funny, Modal Works 🥳"> Hello Peeps from V-Simple-Modal!! </vs-modal>
      </client-only>
    </template>
    
    <script>
      export default {
        methods: {
          openModal(ref) {
            this.$refs[ref].open();
          },
    
          closeModal(ref) {
            this.$refs[ref].close();
          },
        },
      };
    </script>

Note

  • For older Nuxt versions, use <no-ssr>...</no-ssr> tag.
  • You can also do import VsModal from '@vuesimple/vs-modal' & add in component:{VsModal} and use it within component, without globally installing in plugin folder.

⚙ Props

NameTypeDefaultDescription
titleStringModal titleThe modal title (text only). For HTML, use the header slot.
sizeStringmThe size of the modal. One of s, m, l, fullscreen, or auto. Setting the size to auto will make the modal's width grow to fit its content.
alignTopBooleanfalseWhether or not the modal should be vertically aligned to the top of the viewport. When true, the modal will be top aligned, instead of vertically centered.
alignTopMarginNumber60The modal's distance from the top of the viewport, in pixels. Applies only when the alignTop prop is true.
roleStringdialogThe ARIA role for the modal (important for accessibility). One of dialog or alertdialog.
removeHeaderBooleanfalseWhether or not the modal header is removed.
removeCloseButtonBooleanfalseWhether or not the header close button is removed.
preventShiftBooleanfalseWhether or not to add a dummy scrollbar to the modal backdrop to prevent the modal shifting horizontally when the <body> scrollbar is hidden. Set to true to prevent the modal shift.
dismissibleBooleantrueWhether or not the modal can be dismissed. Set to false to prevent the user from dismissing the modal. This will also hide the header close button.
dismissOnStringbackdrop close-button escThe type of event or events that will cause the modal to be dismissed. One or more of backdrop, close-button, or esc. Separate multiple events with a space.

🔥 Events

NameDescription
openEmitted when the modal starts to open. Listen for it using @open.
revealEmitted when the modal is revealed (i.e. when the transition completes). Listen for it using @reveal.
closeEmitted when the modal starts to close. Listen for it using @close.
hideEmitted when the modal close transition completes. Listen for it using @hide.

📎 Slots

You can define own item markup via slots:

NameDescription
(default)Holds the modal body and can contain HTML.
headerHolds the the modal header and can contain HTML.
footerHolds the the modal footer and can contain HTML.
3.0.6

14 days ago

3.0.4

7 months ago

3.0.3

7 months ago

3.0.2

7 months ago

3.0.1

7 months ago

3.0.5

7 months ago

3.0.0

7 months ago

1.4.15

8 months ago

1.4.14

8 months ago

1.4.18

8 months ago

1.4.13

1 year ago

1.4.12

1 year ago

1.4.9

2 years ago

1.4.11

2 years ago

1.4.8

2 years ago

1.4.10

2 years ago

1.4.6

2 years ago

1.4.5

2 years ago

1.4.4

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.4.0

3 years ago

1.3.41

3 years ago

1.3.40

3 years ago

1.3.39

3 years ago

1.3.36

3 years ago

1.3.37

3 years ago

1.3.38

3 years ago

1.3.35

3 years ago

1.3.31

3 years ago

1.3.32

3 years ago

1.3.30

3 years ago

1.3.33

3 years ago

1.3.34

3 years ago

1.3.28

3 years ago

1.3.29

3 years ago

1.3.27

3 years ago

1.3.26

3 years ago

1.3.25

3 years ago

1.3.24

3 years ago

1.3.23

3 years ago

1.3.21

3 years ago

1.3.19

3 years ago

1.3.20

3 years ago

1.3.18

3 years ago

1.3.17

3 years ago