![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
vue-toast-notification
Advanced tools
Yet another Vue.js v2 Toast notification plugin.
npm install vue-toast-notification@^1
import Vue from 'vue';
import VueToast from 'vue-toast-notification';
// Import one of the available themes
//import 'vue-toast-notification/dist/theme-default.css';
import 'vue-toast-notification/dist/theme-bootstrap.css';
Vue.use(VueToast);
//Vue.$toast.open({/* options */});
let instance = Vue.$toast.open('You did it!');
// Force dismiss specific toast
instance.dismiss();
// Dismiss all opened toast immediately
Vue.$toast.clear();
The API methods accepts these options:
Attribute | Type | Default | Description |
---|---|---|---|
message | String | -- | Message text/html (required) |
type | String | success | One of success , info , warning , error , default |
position | String | bottom-right | One of top , bottom , top-right , bottom-right ,top-left , bottom-left |
duration | Number | 3000 | Visibility duration in milliseconds, set to 0 to keep toast visible |
dismissible | Boolean | true | Allow user dismiss by clicking |
onClick | Function | -- | Do something when user clicks |
onDismiss | Function | -- | Do something after toast gets dismissed |
queue | Boolean | false | Wait for existing to dismiss before showing new |
pauseOnHover | Boolean | true | Pause the timer when mouse on over a toast |
Vue.$toast.open(options)
This is generic method, you can use this method to make any kind of toast.
// Can accept a message as string and apply rest of options from defaults
Vue.$toast.open('Howdy!');
// Can accept an Object of options
Vue.$toast.open({
message: 'Something went wrong!',
type: 'error',
// all of other options may go here
});
Vue.$toast.success(message,?options)
There are some proxy methods to make it more readable.
Vue.$toast.success('Profile saved.', {
// optional options Object
})
Vue.$toast.error(message,?options)
Vue.$toast.warning(message,?options)
Vue.$toast.info(message,?options)
Vue.$toast.default(message,?options)
You can set options for all the instances during plugin initialization
Vue.use(VueToast, {
// One of the options
position: 'top'
})
Further you can override option when creating new instances
Vue.$toast.success('Order placed.', {
// override the global option
position: 'bottom'
})
<!-- Vue.js -->
<script src="https://cdn.jsdelivr.net/npm/vue@2.7"></script>
<!-- Lastly add this package -->
<script src="https://cdn.jsdelivr.net/npm/vue-toast-notification@1"></script>
<link href="https://cdn.jsdelivr.net/npm/vue-toast-notification/@1/dist/theme-sugar.css" rel="stylesheet">
<!-- Init the plugin -->
<script>
Vue.use(VueToast);
</script>
>=18.14
and pnpm >=7.25
pre-installedpnpm install
pnpm start
MIT License
FAQs
Vue.js toast notification plugin
The npm package vue-toast-notification receives a total of 0 weekly downloads. As such, vue-toast-notification popularity was classified as not popular.
We found that vue-toast-notification demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.