Code Monkey home page Code Monkey logo

weblineindia / vue-message-dialog-box Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 1.0 179 KB

A VueJS based MessageDialog component, used for showing dialog with message. You can change number of buttons on that. You can also hide header and cross icon.

Home Page: https://www.weblineindia.com/communities.html

License: MIT License

Vue 72.84% CSS 27.16%
vue vuejs vue-components vue-component vuejs-components vuejs-plugin vuejs-snippets vue-component-library vuejs-library vuecomponents

vue-message-dialog-box's Introduction

vue-message-dialog component

A Vue.js MessageDialog component is used for showing dialog with message.
You can change number of buttons on that . You can also hide header and cross icon.

Table of contents

Browser Support

Chrome Firefox Safari Edge IE
83.0 ✔ 77.0 ✔ 13.1.1 ✔ 83.0 ✔ 11.9 ✔

Demo

Getting started

yarn add vue-weblineindia-message-dialog-box

# or use npm

npm install vue-weblineindia-message-dialog-box

Usage

<template>
  <div id="app">
    <button @click="onShowModal">Show Modal</button>
    <AlertBox
      :id="'alertbox'"
      :name="'alertbox'"
      :visible="isShowErrorInModal"
      :content="'Enter here your content'"
      :buttons="alertButtons"
      :show-header="true"
      :header-content="'Enter here your header content'"
      :closable="true"
      :no-of-button="3"
      :index="1"
      @onButtonClick="onClickButton"
      @close="onCrossClick"
      @hide="onHideMessageBox"
    />
  </div>
</template>
import AlertBox from "vue-weblineindia-message-dialog-box";
export default {
  components: {
    AlertBox
  },
  data() {
    return {
      alertButtons: [
        { id: 0, title: "Yes" },
        { id: 1, title: "No" },
        { id: 1, title: "Cancel" }
      ],
      isShowErrorInModal: false
    };
  },
  methods: {
    onShowModal() {
      this.isShowErrorInModal = true;
    },
    onClickButton(value) {
      this.isShowErrorInModal = false;
      switch (value.title) {
        case "Yes":
          // do something on Yes button
          break;
        case "No":
          // do something on No button
          break;
        case "Cancel":
          // do something on Cancel button
          break;
      }
    },
    onCrossClick() {
      this.isShowErrorInModal = false;
    },
    onHideMessageBox() {
      this.isShowErrorInModal = false;
    }
  }
};

Available Props

Prop Data Type Default Description
id string id of the component
name string name of the component
visible Boolean false Show/Hide Modal.
content String Content of the modal
buttons Array [] Buttons objects to contain the button label, button click event, no buttons etc.
showHeader boolean false To hide or show the header of the component.
headerContent String header Content of the modal.
closable Boolean false Adds a close icon to the header to hide the dialog.
noOfButton Number 0 number of button on modal.
index Number 0 index of the component
value String value of the component

Methods

Name Description Value
onButtonClick Emitted when the button click Event
close Emitted when click on the close modal Event
hide Emitted when input is clicked Event

Want to Contribute?

  • Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
  • Fork it.
  • Create new branch to contribute your changes.
  • Commit all your changes to your branch.
  • Submit a pull request.

Need Help?

We also provide a free, basic support for all users who want to use this VueJS modal dialog in their software project. In case you want to customize this modal dialog to suit your development needs, then feel free to contact our VueJS developers.


Collection of Components

We have built many other components and free resources for software development in various programming languages. Kindly click here to view our Free Resources for Software Development.


Changelog

Detailed changes for each release are documented in CHANGELOG.md.

Credits

vue-weblineindia-message-dialog-box is inspired by bootstrap-vue.

License

MIT

vue-message-dialog-box's People

Contributors

partners-wli avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

nguyenvusb

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.