Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
vue-advance-dialog
Advanced tools
VueAdvanceDialog is a flexible vue component. You can easily use this component for your vue or nuxt project. It has many options for customization
Vue Advanced Dialog is a flexible and customizable Vue component. You can easily use this for your Vue or nuxt project.
MIT
npm install --save vue-advance-dialog
import {VueAdvanceDialog} from 'vue-advance-dialog'
require('vue-advance-dialog/dist/vue-advance-dialog.css')
Vue.use(VueAdvanceDialog)
// on Nuxt.js
components: {
VueAdvanceDialog
},
<vue-advance-dialog id="dialog" toggleTitle="Show Dialog">
Your content will go here ...
</vue-advance-dialog>
String
default: dialog_ + random number
If you want to add multiple dialogs you have to set a unique id for every dialog. If you use the same id it will conflict in dialog events.
String
default: btn btn-primary
Boolean
default: false
String
default: ''
Boolean
default: true
Boolean
default: true
String
default: xs
String
default: top-center
String
default: ''
String
default: ''
String
default: ''
String
default: ''
String
default: ''
String
default: slide-top
After opening the dialog, the show
event will fire. If you want to do something after the modal opens you can do it.
<vue-advance-dialog @show="doSomething">
Your content will go here ...
</vue-advance-dialog>
methods: {
doSomething() {
alert('Dialog is opened')
},
}
After closing the dialog, the hide
event will fire. If you want to do something after the modal close you can do it.
<vue-advance-dialog @hide="doSomething">
Your content will go here ...
</vue-advance-dialog>
methods: {
doSomething() {
alert('Dialog is closed')
},
}
FAQs
VueAdvanceDialog is a flexible vue component for popup dialog or modal. You can easily use this component in any of your vue or nuxt projects. It has different useful props and events to customize the component as your requirement.
We found that vue-advance-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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.