- cancel/resume subscription fix

- upload into root folder fix
- custom color theme part 3
This commit is contained in:
Peter Papp
2021-03-25 10:46:23 +01:00
parent a18ceb1b4f
commit ac6b2b09e1
41 changed files with 591 additions and 348 deletions

View File

@@ -1,6 +1,7 @@
<template>
<div id="vuefilemanager" @click="unClick" v-cloak>
<Alert />
<ToastrWrapper />
<router-view />
@@ -10,6 +11,7 @@
</template>
<script>
import ToastrWrapper from '@/components/Others/Notifications/ToastrWrapper'
import CookieDisclaimer from '@/components/Others/CookieDisclaimer'
import Vignette from '@/components/Others/Vignette'
import Alert from '@/components/FilesView/Alert'
@@ -19,6 +21,7 @@ export default {
name: 'app',
components: {
CookieDisclaimer,
ToastrWrapper,
Vignette,
Alert
},