Finish Volumesview.vue

This commit is contained in:
Johannes Zellner
2024-12-27 22:25:00 +01:00
parent 2167b1fc6b
commit dd264617d7
4 changed files with 304 additions and 67 deletions
+4
View File
@@ -1,5 +1,6 @@
<template>
<div>
<Notification />
<SupportView v-if="view === VIEWS.SUPPORT" />
<VolumesView v-if="view === VIEWS.VOLUMES" />
</div>
@@ -7,6 +8,8 @@
<script>
import { Notification } from 'pankow';
import SupportView from './SupportView.vue';
import VolumesView from './VolumesView.vue';
@@ -18,6 +21,7 @@ const VIEWS = {
export default {
name: 'Index',
components: {
Notification,
SupportView,
VolumesView,
},