summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DashboardPage.vue
diff options
context:
space:
mode:
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
},