vue3-confirm-dialog-custom-input
v0.1.8
Published
Version of vue3-confirm-dialog allowing custom input into the dialogue
Readme
vue3-confirm-dialog-custom-input
A version of Simple Confirm Dialog verification plugin with Vue 3, allowing a slot for custom components to be inserted into the dialog.
Demo of original dialog: https://github.com/rowathy/vue3-confirm-dialog
Install
npm install --save vue3-confirm-dialog-custom-input
Quick Start Usage
In main.js or plugin (for Nuxt.js):
import { createApp } from 'vue';
import Vue3ConfirmDialog from 'vue3-confirm-dialog-custom-input';
import 'vue3-confirm-dialog-custom-input/style;
const app = createApp();
app.use(Vue3ConfirmDialog);
app.component('vue3-confirm-dialog', Vue3ConfirmDialog.default)
In App.vue (or in the template file for Nuxt.js (layout/default.vue)):
<template>
<div id="app">
<vue3-confirm-dialog></vue3-confirm-dialog>
<!-- your code -->
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
To use the slot:
<template>
<div id="app">
<vue3-confirm-dialog>
<!-- Put anything here within the dialog tags. Example below for a dropdown within the dialog: -->
<select class="vc-text" v-model="selectedOption">
<option v-for="option in dropdownOptions" :value="option.value" :key="option">{{ option.text }}</option>
</select>
</vue3-confirm-dialog>
<!-- your code -->
</div>
</template>
In any of functions :
methods: {
handleClick(){
this.$confirm(
{
message: 'Are you sure?',
button: {
no: 'No',
yes: 'Yes'
},
/**
* Callback Function
* @param {Boolean} confirm
*/
callback: confirm => {
if (confirm) {
// ... do something
}
}
}
)
}
}
Use only for information
If you want to use only for information and you want of see one button in dialog, you can use only one of 'no' or 'yes' button object.
methods: {
handleClick(){
this.$confirm(
{
title: 'Information',
message: 'This content has been removed',
button: {
yes: 'OK',
}
},
/**
* Callback Function
* @param {Boolean} confirm
*/
callback: confirm => {
if (confirm) {
// ... do something
}
}
)
}
}