mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 14:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="relative">
 | 
						|
    <BaseCard container-class="px-4 py-5 sm:px-8 sm:py-2">
 | 
						|
      <BaseTabGroup>
 | 
						|
        <BaseTab
 | 
						|
          tab-panel-container="py-4 mt-px"
 | 
						|
          :title="$t('settings.customization.invoices.title')"
 | 
						|
        >
 | 
						|
          <InvoicesTab />
 | 
						|
        </BaseTab>
 | 
						|
 | 
						|
        <BaseTab
 | 
						|
          tab-panel-container="py-4 mt-px"
 | 
						|
          :title="$t('settings.customization.estimates.title')"
 | 
						|
        >
 | 
						|
          <EstimatesTab />
 | 
						|
        </BaseTab>
 | 
						|
 | 
						|
        <BaseTab
 | 
						|
          tab-panel-container="py-4 mt-px"
 | 
						|
          :title="$t('settings.customization.payments.title')"
 | 
						|
        >
 | 
						|
          <PaymentsTab />
 | 
						|
        </BaseTab>
 | 
						|
 | 
						|
        <BaseTab
 | 
						|
          tab-panel-container="py-4 mt-px"
 | 
						|
          :title="$t('settings.customization.items.title')"
 | 
						|
        >
 | 
						|
          <ItemsTab />
 | 
						|
        </BaseTab>
 | 
						|
      </BaseTabGroup>
 | 
						|
    </BaseCard>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
import InvoicesTab from './invoices/InvoicesTab.vue'
 | 
						|
import EstimatesTab from './estimates/EstimatesTab.vue'
 | 
						|
import PaymentsTab from './payments/PaymentsTab.vue'
 | 
						|
import ItemsTab from './items/ItemsTab.vue'
 | 
						|
</script>
 |