
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
bootstrap-vue-dialog
Advanced tools
Implementation of vuedl dialog helper with Vuetify.js framework
This module will help you to work with modal dialogs in your project
NOTE: Module is in initial development. Anything may change at any time.
Install the package from npm
npm install bootstrap-vue-dialog
import Dialog from 'bootstrap-vue-dialog'
Vue.use(Dialog, {
context,
property
})
context
- the context of your application, such as store, axios, router etc.property
- the property, which will integrate to Vue. Default is $dialog
const res = await this.$dialog.confirm({ text: 'Do you really want to exit?'})
const res = await this.$dialog.warning({ text: 'Do you really want to exit?', title: 'Warning'})
this.$dialog.error({ text: 'Cannot delete this item', title: 'Error'})
let res = await this.$dialog.prompt({ text: 'Your name', title: 'Please input your name' })
this.$dialog.notify.success('Success notification')
this.$dialog.notify.warning('Warning notification')
this.$dialog.notify.error('Error notification')
this.$dialog.notify.info('Info notification')
this.$dialog.notify.error('No autoclose notification', { timeout : 0 })
this.$dialog.notify.info('Top left notification', { position: 'top-left' })
this.$dialog.notify.info('Bottom right notification', { position: 'bottom-right' }
this.$dialog.notify.info('Bottom left notification', { position: 'bottom-left' })
To all this simple dialogs you can config your actions, just send
{
...
actions: {
'false': 'No',
'true': 'Yes'
}
}
// result will be true, false, or undefigned
{
...
actions: ['No', 'Yes']
}
// result will be 'No', 'Yes', or undefigned
You can also set options
{
actions: [{
text: 'Yes',
color: 'blue',
key: true,
handle: () => {
// on button click
}
}]
}
FAQs
Dialog helper for bootstrap-vue framework
We found that bootstrap-vue-dialog 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.