add billing, organization settings and import to navigation

This commit is contained in:
Gregor Vostrak
2024-05-21 02:44:09 +02:00
parent c67c5e46e1
commit efd3fef0c5
4 changed files with 93 additions and 11 deletions

View File

@@ -1,7 +1,6 @@
<script setup lang="ts">
import FormSection from '@/Components/FormSection.vue';
import PrimaryButton from '@/Components/PrimaryButton.vue';
import type { Organization } from '@/types/models';
import { computed, onMounted, ref } from 'vue';
import { useNotificationsStore } from '@/utils/notification';
import { api } from '../../../../../openapi.json.client';
@@ -11,11 +10,6 @@ import { getCurrentOrganizationId } from '@/utils/useUser';
import type { ImportReport, ImportType } from '@/utils/api';
import DialogModal from '@/Components/DialogModal.vue';
import SecondaryButton from '@/Components/SecondaryButton.vue';
defineProps<{
team: Organization;
}>();
const importTypeOptions = ref<ImportType[]>([]);
const { addNotification } = useNotificationsStore();