GithubHelp home page GithubHelp logo

hoppscotch / vue-toasted Goto Github PK

View Code? Open in Web Editor NEW

This project forked from shakee93/vue-toasted

8.0 2.0 1.0 875 KB

๐Ÿ–– Responsive Touch Compatible Toast plugin for Vue 3

Home Page: https://hoppscotch.io

License: MIT License

JavaScript 84.19% Vue 0.15% SCSS 15.66%
vue composition-api javascript options-api toast vue3

vue-toasted's Introduction

A Vue 3 port of the vue-toasted library.



Install

  • Install the package from npm
    npm install @hoppscotch/vue-toasted

Usage

  • Initialize the Vue plugin. For example, for a Vite Vue application
    // main.js
    import Toasted from "@hoppscotch/vue-toasted"
    import { createApp } from "vue"
    import App from "./App.vue"
    
    // Make sure to include the default stylings
    import "@hoppscotch/vue-toasted/style.css"
    
    const app = createApp(App)
    
    app.use(Toasted) // You can pass options as a second parameter
  • Now you will be able to access vue-toasted in your Vue components.

    For Options API:
    import { defineComponent } from "vue"
    
    export default defineComponent({
      mounted() {
          // Should give you access to the toasted show function
          this.$toasted.show("Hola! From Options API!")
      }
    })
    For Composition API:
    const toast = useToasted()
    toast.show("Hola! From Composition API!")

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.