How to create a Modal Component with Vue.js

How to create a Modal Component with Vue.js

In this post we will give you information about How to create a Modal Component with Vue.js. Hear we will give you detail about How to create a Modal Component with Vue.jsAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to create a modal component using the Vue.js.

Getting Started

This tutorial assumes that you already created a new vue project by using Vue-cli

Let’s create a new component called Modal.vue inside the components folder.

Now, add the following code.

Modal.vue
<template>   <div>      <div v-if="isOpen">          <h1>Modal heading</h1>          <p>This my first modal using vue.js</p>      </div>      <button @click="isOpen=!isOpen">Open modal</button>   </div></template><script>   export default{       data:function(){          return {      isOpen: false    };       }   }</script>

Here we created our modal template with two div tags and one button element. The button is used to open our modal.

See also  How to display loading spinner while dom is rendering in React

In our second div tag, we added a v-if=isOpen directive so that our modal will only open if the isOpen property is true.

Let’s test our modal component by importing it inside the App.vue file, don’t worry we will add styles and transitions too.

If we toggle on a Open modal button our modal will open.

Adding styles and transitions

Vue offers us a custom transition element which helps us to add and remove the transitions to our HTML elements.

Let’s add the styles and transitions to our Modal component.

Modal.vue
&lt;template&gt;  &lt;div&gt;    <span>&lt;transition name="modal"&gt;      &lt;div v-if="isOpen"&gt;        &lt;div  @click.self="isOpen = false;"&gt;          &lt;div &gt;            &lt;h1&gt;Modal heading&lt;/h1&gt;            &lt;p&gt;This my first modal using vue.js&lt;/p&gt;          &lt;/div&gt;        &lt;/div&gt;      &lt;/div&gt;    &lt;/transition&gt;    &lt;button @click="isOpen = !isOpen;"&gt;      {{ isOpen ? "Close" : "Open" }} modal    &lt;/button&gt;  &lt;/div&gt;&lt;/template&gt;&lt;script&gt;export default {  data: function() {    return {      isOpen: false    };  }};&lt;/script&gt;&lt;style scoped&gt;.modal {  width: 500px;  margin: 0px auto;  padding: 20px;  background-color: #fff;  border-radius: 2px;  box-shadow: 0 2px 8px 3px;  transition: all 0.2s ease-in;  font-family: Helvetica, Arial, sans-serif;}.fadeIn-enter {  opacity: 0;}.fadeIn-leave-active {  opacity: 0;  transition: all 0.2s step-end;}.fadeIn-enter .modal,.fadeIn-leave-active.modal {  transform: scale(1.1);}button {  padding: 7px;  margin-top: 10px;  background-color: green;  color: white;  font-size: 1.1rem;}.overlay {  position: fixed;  top: 0;  left: 0;  display: flex;  justify-content: center;  align-items: center;  width: 100%;  height: 100%;  background: #00000094;  z-index: 999;  transition: opacity 0.2s ease;}&lt;/style&gt;

In the above code, we wrapped our modal with transition element.

See also  CSS Checkboxes code and Demo

transition: In transition element, we need to add a name attribute with transition name.

Let test our modal again.

Have you seen we have also added an overlay to our modal with click listener so that we can close our modal by clicking on the overlay?

Hope this code and post will helped you for implement How to create a Modal Component with Vue.js. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

See also  How to create custom library file in codeigniter 3?

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US