stuff
This commit is contained in:
parent
cf6b70b167
commit
bc1bd6fcbd
|
|
@ -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 />
|
||||||
|
|
|
||||||
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue