summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DashboardPage.vue
diff options
context:
space:
mode:
authorUdo Walter2019-03-22 05:36:03 +0100
committerUdo Walter2019-03-22 05:36:03 +0100
commite6c97c4913e5d24a908c65cc7592d9332df24057 (patch)
tree80662936f9dcb8622a743726fac5fcfccd6bddd2 /webapp/src/components/DashboardPage.vue
parent[server/registration/backends] Rework addClient and updateClient to receive json (diff)
downloadbas-e6c97c4913e5d24a908c65cc7592d9332df24057.tar.gz
bas-e6c97c4913e5d24a908c65cc7592d9332df24057.tar.xz
bas-e6c97c4913e5d24a908c65cc7592d9332df24057.zip
[webapp] add back to top button + log improvements
Diffstat (limited to 'webapp/src/components/DashboardPage.vue')
-rw-r--r--webapp/src/components/DashboardPage.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/src/components/DashboardPage.vue b/webapp/src/components/DashboardPage.vue
index 4fbac78..7e3a4c3 100644
--- a/webapp/src/components/DashboardPage.vue
+++ b/webapp/src/components/DashboardPage.vue
@@ -98,13 +98,14 @@
<v-content>
<router-view />
</v-content>
-
+ <back-to-top-button></back-to-top-button>
<notifications-snackbars></notifications-snackbars>
</v-app>
</template>
<script>
import { mapState, mapMutations, mapGetters } from 'vuex'
+import BackToTopButton from '@/components/BackToTopButton'
import NotificationsAlerts from '@/components/NotificationsAlerts'
import NotificationsSnackbars from '@/components/NotificationsSnackbars'
import AccountModule from '@/components/AccountModule'
@@ -120,6 +121,7 @@ export default {
]
},
components: {
+ BackToTopButton,
NotificationsAlerts,
NotificationsSnackbars
},