Replace horizontal tabs with VList-based vertical sidebar following the Vuexy ecommerce settings pattern. Consolidate Tags, Crowd Types, Members, and Registration Fields pages into the settings page as sidebar tabs. Add SettingsGeneral panel with org details form and danger zone. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
197 B
Vue
12 lines
197 B
Vue
<script setup lang="ts">
|
|
import EmailLogTab from '@/components/organisation/EmailLogTab.vue'
|
|
|
|
defineProps<{
|
|
orgId: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<EmailLogTab :org-id="orgId" />
|
|
</template>
|