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>
After opening the dialog, the show
event will fire. If you want to do something after the dialog 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 dialog close you can do it.
<vue-advance-dialog @hide="doSomething">
Your content will go here ...
</vue-advance-dialog>
methods: {
doSomething() {
alert('Dialog is closed')
},
}
show
hide
dialog in two wayYou can show the dialog through the component button. When you set toggleTitle
it will generate a button for you. You can show dialog by clicking this button.
<vue-advance-dialog id="dialog" toggleTitle="Show Dialog"></vue-advance-dialog>
Screenshot: https://www.awesomescreenshot.com/image/15903525?key=ec1d21290a089f86b4edfc0e7e7b0a05
Also, you can use toggle
scope to set toggle button content. When you use toggle
scope you have to skip to set toggleTitle
.
<vue-advance-dialog id="dialog">
<template v-slot:toggle>
<i class="fas fa------"></i>
Show Dialog
</template>
</vue-advance-dialog>
You can't use
toggle
scope andtoggleTitle
together. Only one you can use.
If you don't set toggleTitle
or toggle
scope, no button will be generated. You can show dialog by firing an emit
event, outside of the component.
<button @click="openDialog">Your button</button>
import {EventHub} from 'vue-advance-dialog'
export default {
methods: {
openDialog() {
EventHub.$emit('show-dialog', 'dialog')
// this emit function accept two-parameter (event-name, dialog-id)
}
}
}
Or, you can this event where dialog component is exists.
export default {
mounted() {
EventHub.$emit('show-dialog', 'dialog')
},
}
Similarly, you can fire an emit
event for closing dialog.
export default {
mounted() {
EventHub.$emit('hide-dialog', 'dialog')
},
//or
methods: {
hideDialog() {
EventHub.$emit('hide-dialog', 'dialog')
// this emit function accept two-parameter (event-name, dialog-id)
}
}
}
toggle
, By using this, you can set your content in toggle button.
<vue-advance-dialog id="dialog">
<template v-slot:toggle>
<i class="fas fa------"></i>
Show Dialog
</template>
</vue-advance-dialog>
header
, You can set you contents in dialog header by usingheader
scope.
<vue-advance-dialog id="dialog">
<template v-slot:header>
Your content will go here ...
</template>
</vue-advance-dialog>
footer
, Similarly you can usefooter
scope for footer content.
<vue-advance-dialog id="dialog">
<template v-slot:footer>
Your content will go here ...
</template>
</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
I explained this before, in the events section.
Boolean
default: false
If you want to disable the component
toggle button
, you can use thisprop
.
String
default: ''
You can set dialog
title
through thisprop
or you can useheader
scope.
Boolean
default: true
You can remove in component close button by using this prop. Screenshot: https://www.awesomescreenshot.com/image/15904512?key=72caabc6d887286ec05aa7a5cc60c0a8
Boolean
default: true
If you want to stop closing dialog by clicking outside the dialog, you can use this
prop
.
String
default: xs
You can define dialog size by using this
prop
. Sizes:lg
,md
,sm
,xs
String
default: top-center
You can set your dialog position by using this
prop
. Positions:center-center
,center-left
,center-right
,top-center
,top-left
,top-right
,bottom-center
,bottom-left
,bottom-right
String
default: slide-top
You can set dialog opening and closing transition by using this
prop
. Transitions:fade
,zoom
,slide-top
String
default: ''
String
default: ''
String
default: ''
String
default: ''
String
default: ''
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.
The npm package vue-advance-dialog receives a total of 15 weekly downloads. As such, vue-advance-dialog popularity was classified as not popular.
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.