Skip to content

CODEREXLTD/vue-quick-toastify

Repository files navigation

Vue Quick Toastify

Vue Quick Toastify is a simple and customizable toast notification component for Vue applications.

Installation

To install the package, run the following command:

npm install vue-quick-toastify

Usage

Import the QuickToastify component and use it in your application. The component takes the following props:

  • isShow (boolean): Determines if the toast notification is shown.
  • setIsShow (function): A function to update the isShow state.
  • message (string): The message to display in the toast notification.
  • notificationType (string): The type of notification, either 'success' or 'error'.

Example

<template>
    <button @click="isShowToastify = true">Click To show Quick Toastify</button>
    <QuickToastify 
        :isShow="isShowToastify"
        :close="hideToastify"
        :notificationType="'success'"
        :message="'Welcome to Quick Toastify☺'"
    />
</template>

<script>
    import QuickToastify from 'vue-quick-toastify';
    import 'vue-quick-toastify/dist/quick-toastify.css';
    export default{
        name:'App',
        components:{
            QuickToastify
        },
        data(){
            return{
                isShowToastify: false
            }
        },
        methods:{
            hideToastify(){
                this.isShowToastify = false;
            }
        }
    }
</script>

Development

If you want to contribute or run the project locally, follow these steps:

  • Clone the repository First, clone the repository.
git clone https://github.com/CODEREXLTD/vue-quick-toastify
  • Install dependencies Navigate to the project directory and install the dependencies:
cd vue-quick-toastify
npm install
  • Run server
npm run serve
  • Build the component
npm run build

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Issues

If you encounter any issues, please report them in the GitHub Issues section of the repository.

Acknowledgements

Thanks to the open-source community for their contributions and inspiration.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published