Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
vue-awesome-notifications
Advanced tools
It's a Vue.js version of Awesome Notifications library. Awesome Notifications is a lightweight JavaScript library for notifications.
Demo: https://f3oall.github.io/awesome-notifications/
Attention! This library uses FontAwesome icons, so you either need to make sure that FontAwesome is connected to your project, either disable icons, passing the
icons: {enabled: false}
property to options. Also you can preserve icons, setting up a custom template for them via edittingoptions.icons.template
npm install --save vue-awesome-notifications
In main.js
import Vue from "vue"
import VueAWN from "vue-awesome-notifications"
Vue.use(VueAWN, options)
In any of your files:
this.$awn.success("Your custom message")
For easier customization, SCSS version is preffered.
With SCSS - In your App.vue
<style lang="scss">
@import '~vue-awesome-notifications/dist/styles/style.scss';
</style>
With CSS - In your App.vue
<style lang="css">
@import 'vue-awesome-notifications/dist/styles/style.css';
</style>
Or in main.js
require("vue-awesome-notifications/dist/styles/style.css")
**
You can pass options
object to initialization function to override defaults. List of available options can be found in Awesome Notifications README.md.
Styles
If you use SCSS, you can configure styles by redefining variables. List of available variables can be found in Awesome Notifications repo
Otherwise, if you use 'style.css', you can only override it.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Vue.js version of Awesome Notifications JavaScript library
The npm package vue-awesome-notifications receives a total of 609 weekly downloads. As such, vue-awesome-notifications popularity was classified as not popular.
We found that vue-awesome-notifications demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.