Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
mosha-vue-toastify
Advanced tools
A light weight and fun Vue 3 toast or notification or snack bar or however you wanna call it library.
A light weight and fun Vue 3 toast or notification or snack bar or however you wanna call it library.
A demo is comming.
With NPM:
$ npm install mosha-vue-toastify
With Yarn:
$ yarn add mosha-vue-toastify
<template>
<button @click="toast">Toast it!</button>
</template>
<script lang='ts'>
import { defineComponent } from 'vue'
import { createToast } from 'mosha-vue-toastify';
import 'mosha-vue-toastify/dist/style.css'
export default defineComponent({
name: 'HelloWorld',
setup: () => {
const toast = () => {
createToast('Wow, easy')
}
return { toast }
}
})
</script>
The createToast
function accepts 2 arguments, the first argument can be just a string or a object like this { title: 'some title', description: 'some good description'}
, the second argument is an options object.
Options:
name | type | default | description |
---|---|---|---|
type | "info", "danger", "warning", "success", "default" | "default" | Give the toast different styles and icons. |
timeout | number | 5000 | How many ms you want the toggle to close itself? |
position | "top-left", "top-right", "bottom-left", "bottom-right", "top-center", "bottom-center" | "top-right" | Where do you want the toast to appear? |
showCloseButton | boolean | true | Do you wanna show the close button ? |
showIcon | boolean | false | Do you wanna show the icon ? |
transition | "bounce", "flip", "slide" | "bounce" | Which animation do you want? |
hideProgressBar | boolean | false | Do we wanna hide the fancy progress bar? |
swipeClose | boolean | true | Allows the user swipe close the toast |
toastBackgroundColor | string | default color | Customize the background color of the toast. |
onClose | function | N/A | This function will be called at the end of the toast's lifecycle |
FAQs
A light weight and fun Vue 3 toast or notification or snack bar or however you wanna call it library.
The npm package mosha-vue-toastify receives a total of 1,874 weekly downloads. As such, mosha-vue-toastify popularity was classified as popular.
We found that mosha-vue-toastify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.