This commit is contained in:
holger.trampe 2021-06-24 19:57:38 +02:00
parent cf6b70b167
commit bc1bd6fcbd
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<template> <template>
<Content app-name="app"> <Content app-name="app">
<vue-confirm-dialog />
<AppNavigation /> <AppNavigation />
<AppContent> <AppContent>
<router-view /> <router-view />

View File

@ -59,8 +59,8 @@ export default {
this.$confirm({ this.$confirm({
message: 'Möchten Sie die Gruppe ' + this.group.name + ' löschen?', message: 'Möchten Sie die Gruppe ' + this.group.name + ' löschen?',
button: { button: {
no: 'Nein',
yes: 'Ja', yes: 'Ja',
no: 'Nein',
}, },
callback: confirm => { callback: confirm => {
if (confirm) { if (confirm) {

View File

@ -1,6 +1,5 @@
<template> <template>
<Content app-name="GroupManagement"> <Content app-name="GroupManagement">
<vue-confirm-dialog />
<b-container <b-container
v-if="isLoading" v-if="isLoading"
fluid> fluid>